We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7956b8b commit cb2625cCopy full SHA for cb2625c
1 file changed
.github/workflows/node.js.yml
@@ -20,12 +20,14 @@ jobs:
20
21
steps:
22
- uses: actions/checkout@v4
23
+ - name: Enable Corepack
24
+ # Must run before setup-node's yarn cache: resolves Yarn from packageManager, not v1.
25
+ # See: https://github.com/actions/setup-node/issues/1027
26
+ run: corepack enable
27
- name: Use Node.js ${{ matrix.node-version }}
28
uses: actions/setup-node@v4
29
with:
30
node-version: ${{ matrix.node-version }}
31
cache: yarn
- - name: Enable Corepack
- run: corepack enable
32
- run: yarn
33
- run: yarn build
0 commit comments