Skip to content

Commit 3e8a14e

Browse files
committed
update ci with pnpm in place of npm
1 parent 5bc7cbb commit 3e8a14e

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.github/workflows/publish.yaml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,19 @@ jobs:
2020
with:
2121
node-version: "20"
2222

23+
- name: Setup pnpm
24+
uses: pnpm/action-setup@v2
25+
with:
26+
version: 10.6.3
27+
2328
- name: Install dependencies
24-
run: npm ci
29+
run: pnpm install
2530

2631
- name: Run tests
27-
run: npm test
32+
run: pnpm test
2833

2934
- name: Run type checking
30-
run: npm run typecheck
35+
run: pnpm typecheck
3136

3237
- name: Publish package
3338
run: npx jsr publish

0 commit comments

Comments
 (0)