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:
|
build:
|
||||||
runs-on: docker
|
runs-on: docker
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- name: Checkout
|
||||||
- uses: actions/setup-node@v4
|
uses: actions/checkout@v4
|
||||||
- run: yarn build
|
- 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