We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67b3a44 commit 3e65af8Copy full SHA for 3e65af8
.github/workflows/test.yml
@@ -10,14 +10,14 @@ jobs:
10
steps:
11
- uses: actions/checkout@v4
12
13
- - name: Setup Node.js
14
- uses: actions/setup-node@v4
+ - name: Setup node.js
+ # yarn cache is broken without corepack support.
15
+ # Using forked version from https://github.com/actions/setup-node/pull/901
16
+ uses: JP250552/setup-node@aa9724272b8a9ea9fca3d51295a2cc4707e35ec2
17
with:
- node-version: '22'
- cache: 'yarn'
18
-
19
- - name: Enable corepack
20
- run: corepack enable
+ node-version: 24
+ cache: yarn
+ corepack: true
21
22
- name: Install dependencies
23
run: yarn install --frozen-lockfile
0 commit comments