Skip to content

Commit 12ac200

Browse files
committed
Update ci.yml
1 parent c033b58 commit 12ac200

File tree

1 file changed

+16
-14
lines changed

1 file changed

+16
-14
lines changed

.github/workflows/ci.yml

Lines changed: 16 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,22 @@ jobs:
1212
job:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v3
16-
- uses: pnpm/action-setup@v2.2.2
17-
with:
18-
version: 8
19-
- uses: actions/setup-node@v3
20-
with:
21-
node-version: 20
22-
cache: 'pnpm'
15+
- uses: actions/checkout@v4
16+
- uses: pnpm/action-setup@v4
17+
with:
18+
version: 8
19+
run_install: true
2320

24-
- name: Installing deps
25-
run: pnpm install
21+
- uses: actions/setup-node@v4
22+
with:
23+
node-version: 22
24+
cache: "pnpm"
2625

27-
- name: Building
28-
run: pnpm run build
26+
- name: Installing deps
27+
run: pnpm install
2928

30-
- name: Testing
31-
run: pnpm run test:CI
29+
- name: Building
30+
run: pnpm run build
31+
32+
- name: Testing
33+
run: pnpm run test:CI

0 commit comments

Comments
 (0)