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.
2 parents fc26476 + 530b17b commit 342adf6Copy full SHA for 342adf6
.github/workflows/tests.yml
@@ -12,15 +12,17 @@ jobs:
12
13
steps:
14
- uses: actions/checkout@v4
15
-
16
- - name: Setup Node.js
+ - name: Install pnpm
+ uses: pnpm/action-setup@v4
17
+ with:
18
+ version: 10
19
+ - name: Use Node.js ${{ matrix.node-version }}
20
uses: actions/setup-node@v4
21
with:
- node-version: 20
- cache: 'npm'
22
+ node-version: ${{ matrix.node-version }}
23
+ cache: 'pnpm'
24
- name: Install dependencies
- run: npm ci
25
+ run: pnpm install
26
27
- name: Run tests
28
run: npm test
0 commit comments