Fix install step

This commit is contained in:
Daniel Imms
2023-08-22 07:01:27 -07:00
parent 2b3cfb39a1
commit 516756fad8
+6 -2
View File
@@ -88,7 +88,9 @@ jobs:
node-version: ${{ matrix.node-version }}.x
cache: 'yarn'
- name: Install dependencies
run: yarn --frozen-lockfile
run: |
yarn --frozen-lockfile
yarn install-addons
- name: Wait for build job
uses: NathanFirmo/wait-for-other-job@v1.1.1
with:
@@ -124,7 +126,9 @@ jobs:
node-version: ${{ matrix.node-version }}.x
cache: 'yarn'
- name: Install dependencies
run: yarn --frozen-lockfile
run: |
yarn --frozen-lockfile
yarn install-addons
- name: Install playwright
run: npx playwright install
- name: Wait for build job