Skip to content

Commit

Permalink
fix the latest yarn breaking its own installation
Browse files Browse the repository at this point in the history
  • Loading branch information
evanw committed Nov 18, 2023
1 parent 429da3d commit cf3ae0d
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -174,9 +174,6 @@ jobs:
if: matrix.os != 'ubuntu-latest'
run: node scripts/wasm-tests.js

- name: Yarn PnP tests
run: make test-yarnpnp

- name: Sucrase Tests
if: matrix.os == 'ubuntu-latest'
run: make test-sucrase
Expand All @@ -193,6 +190,15 @@ jobs:
if: matrix.os == 'ubuntu-latest'
run: cd scripts && node gen-unicode-table.js

- name: Yarn PnP tests
run: |
# Note that Yarn recently deliberately broke "npm install -g yarn".
# They say you now have to run "corepack enable" to fix it. They have
# written about this here: https://yarnpkg.com/corepack
corepack enable
make test-yarnpnp
esbuild-old-versions:
name: esbuild CI (old versions)
runs-on: ubuntu-latest
Expand Down

0 comments on commit cf3ae0d

Please sign in to comment.