Skip to content

Commit

Permalink
fix: another attempt to fix worker script
Browse files Browse the repository at this point in the history
  • Loading branch information
F-OBrien committed Aug 7, 2024
1 parent 5fdbebe commit 4276e29
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/pr-any.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ jobs:
with:
node-version: 18.14
- name: Install dependencies
run: yarn install
run: |
corepack enable
yarn install --immutable
env:
PUPPETEER_SKIP_CHROMIUM_DOWNLOAD: 'true'
- name: Lint
Expand All @@ -31,7 +33,9 @@ jobs:
with:
node-version: 18.14
- name: Install dependencies
run: yarn install
run: |
corepack enable
yarn install --immutable
env:
PUPPETEER_SKIP_CHROMIUM_DOWNLOAD: 'true'
- name: Build
Expand Down

0 comments on commit 4276e29

Please sign in to comment.