Make action install dependencies before trying to build
Some checks failed
/ build (push) Failing after 37s
Some checks failed
/ build (push) Failing after 37s
This commit is contained in:
parent
63423f2110
commit
6ae65fdb45
1 changed files with 8 additions and 3 deletions
|
@ -3,6 +3,11 @@ jobs:
|
|||
build:
|
||||
runs-on: docker
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/setup-node@v4
|
||||
- run: yarn build
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
- name: Set up Node
|
||||
uses: actions/setup-node@v4
|
||||
- name: Install dependencies
|
||||
run: yarn install
|
||||
- name: Build
|
||||
run: yarn build
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue