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 7238d73 commit 5ec3254Copy full SHA for 5ec3254
.github/workflows/node.js.yml
@@ -18,18 +18,23 @@ jobs:
18
steps:
19
- uses: actions/checkout@v4
20
21
+ - name: Setup pnpm
22
+ uses: pnpm/action-setup@v4
23
+ with:
24
+ version: latest
25
+
26
- name: Use Node.js ${{ matrix.node-version }}
27
uses: actions/setup-node@v4
28
with:
29
node-version: ${{ matrix.node-version }}
- cache: 'npm'
30
+ cache: 'pnpm'
31
- - run: npm ci
- - run: npm run test-ci
32
+ - run: pnpm install --frozen-lockfile
33
+ - run: pnpm run test-ci
34
35
- name: Generate coverage report
36
if: matrix.node-version == 24
- run: npm run coverage
37
+ run: pnpm run coverage
38
39
- name: Upload coverage to Codecov
40
0 commit comments