Skip to content
This repository was archived by the owner on Sep 19, 2025. It is now read-only.

Commit ed92276

Browse files
committed
Update test.yml
1 parent ecacf90 commit ed92276

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/test.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,21 @@ jobs:
1616
steps:
1717
- name: Checkout repo
1818
uses: actions/checkout@v4
19+
20+
- uses: pnpm/action-setup@v4
21+
name: Install pnpm
22+
with:
23+
version: 9
24+
run_install: false
1925

2026
- name: Setup Node
2127
uses: actions/setup-node@v4
2228
with:
2329
node-version: 20
30+
cache: 'pnpm'
2431

2532
- name: Install dependencies
26-
uses: bahmutov/npm-install@v1
33+
run: pnpm install
2734

2835
- run: npm run typecheck
2936
- run: npm run test

0 commit comments

Comments
 (0)