Skip to content

Commit 9621da3

Browse files
committed
use pnpm for tests
1 parent ae80da8 commit 9621da3

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

.github/workflows/tests.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,16 @@ jobs:
1717
uses: actions/setup-node@v4
1818
with:
1919
node-version: ${{ matrix.node-version }}
20-
cache: 'npm'
20+
cache: 'pnpm'
21+
22+
- name: Setup pnpm
23+
uses: pnpm/action-setup@v4
24+
with:
25+
version: 9
26+
run_install: false
27+
2128
- name: Install dependencies
22-
run: npm i
29+
run: pnpm install
30+
2331
- name: Running tests
24-
run: npm test
32+
run: pnpm test

0 commit comments

Comments
 (0)