Skip to content

Commit cf3d7fc

Browse files
committed
ci: use pnpm instead of npm (repo uses pnpm-lock.yaml)
1 parent 288dfed commit cf3d7fc

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,12 @@ jobs:
1414
node-version: [18, 20, 22]
1515
steps:
1616
- uses: actions/checkout@v4
17+
- uses: pnpm/action-setup@v3
18+
with:
19+
version: 9
1720
- uses: actions/setup-node@v4
1821
with:
1922
node-version: ${{ matrix.node-version }}
20-
- run: npm ci
21-
- run: npm run typecheck
22-
- run: npm test -- run
23+
- run: pnpm install
24+
- run: pnpm run typecheck
25+
- run: pnpm test -- run

0 commit comments

Comments
 (0)