Skip to content

Commit 38249d0

Browse files
committed
ci: actions/setup-node@v5
1 parent b1ab187 commit 38249d0

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

.github/workflows/test.yaml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,18 @@ jobs:
1717
steps:
1818
- uses: actions/checkout@v5
1919

20+
- name: Install pnpm
21+
uses: pnpm/action-setup@v4
22+
with:
23+
version: 10.14.0
24+
2025
- name: Install Node.js
21-
uses: actions/setup-node@v4
26+
uses: actions/setup-node@v5
2227
with:
2328
node-version: 22
2429

2530
- name: Install dependencies
26-
uses: pnpm/action-setup@v4
27-
with:
28-
version: 10.14.0
29-
run_install: |
30-
- args: [--frozen-lockfile]
31+
run: pnpm install
3132

3233
- name: Validate TypeScript
3334
run: pnpm run test

0 commit comments

Comments
 (0)