Skip to content

Commit eea39f8

Browse files
committed
chore: also fix config-test workflow
1 parent bce9098 commit eea39f8

File tree

1 file changed

+16
-6
lines changed

1 file changed

+16
-6
lines changed

.github/workflows/config-test.yml

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,26 @@ jobs:
99

1010
strategy:
1111
matrix:
12-
node-version: ['18']
12+
node-version: ['24']
1313

1414
steps:
1515
- name: Checkout repository
16-
uses: actions/checkout@v2
16+
uses: actions/checkout@v4
17+
18+
- name: Setup pnpm
19+
uses: pnpm/action-setup@v4
20+
with:
21+
version: 10.28.0
22+
1723
- name: Use Node.js ${{ matrix.node-version }}
18-
uses: actions/setup-node@v2
24+
uses: actions/setup-node@v4
1925
with:
20-
node-version: ${{ matrix.node-version }}
26+
node-version: ${{ matrix.node-version }}
27+
cache: 'pnpm'
28+
2129
- name: Install dependencies
22-
run: npm install
23-
- run: npm run test
30+
run: pnpm install --frozen-lockfile
31+
32+
- name: Run tests
33+
run: pnpm run test
2434

0 commit comments

Comments
 (0)