Skip to content

Commit 4232c69

Browse files
committed
swap to pnpm and update actions
1 parent fbeca09 commit 4232c69

File tree

4 files changed

+5026
-12900
lines changed

4 files changed

+5026
-12900
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,14 @@ jobs:
1818
timeout-minutes: 10
1919

2020
steps:
21-
- uses: actions/checkout@v4
22-
- uses: actions/setup-node@v4
21+
- uses: actions/checkout@v6
22+
- uses: pnpm/action-setup@v4
23+
- uses: actions/setup-node@v6
2324
with:
2425
node-version: 22
25-
cache: npm
26-
- run: npm ci
27-
- run: npm run lint
26+
cache: pnpm
27+
- run: pnpm install
28+
- run: pnpm run lint
2829

2930
test:
3031
name: "Test"
@@ -36,11 +37,12 @@ jobs:
3637
node-version: ['18.x', '20.x', '22.x']
3738

3839
steps:
39-
- uses: actions/checkout@v4
40+
- uses: actions/checkout@v6
41+
- uses: pnpm/action-setup@v4
4042
- name: Use Node.js ${{ matrix.node-version }}
41-
uses: actions/setup-node@v4
43+
uses: actions/setup-node@v6
4244
with:
4345
node-version: ${{ matrix.node-version }}
44-
cache: npm
45-
- run: npm ci
46-
- run: npm test
46+
cache: pnpm
47+
- run: pnpm install
48+
- run: pnpm test

0 commit comments

Comments
 (0)