Skip to content

Commit

Permalink
Merge pull request #101 from pulsar-edit/fix-CI-node-18
Browse files Browse the repository at this point in the history
CI: Work around a weird bug in Yarn v1.x
  • Loading branch information
DeeDeeG authored Oct 24, 2023
2 parents 9b7205b + 12c276b commit 03b81ad
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,11 @@ jobs:
check-latest: true

- name: Install dependencies
run: yarn install
run: |
# Yarn v1.x needs global node-gyp available if npm 9.7.2+ is the global npm version,
# or else postinstall scripts for this repo won't run. It's a long story. And it's a "won't fix" bug in Yarn v1.x.
yarn global add [email protected]
yarn install
- if: "!contains(matrix.os, 'windows')"
name: Run tests 👩🏾‍💻
Expand Down

0 comments on commit 03b81ad

Please sign in to comment.