We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bce9098 commit eea39f8Copy full SHA for eea39f8
.github/workflows/config-test.yml
@@ -9,16 +9,26 @@ jobs:
9
10
strategy:
11
matrix:
12
- node-version: ['18']
+ node-version: ['24']
13
14
steps:
15
- name: Checkout repository
16
- uses: actions/checkout@v2
+ uses: actions/checkout@v4
17
+
18
+ - name: Setup pnpm
19
+ uses: pnpm/action-setup@v4
20
+ with:
21
+ version: 10.28.0
22
23
- name: Use Node.js ${{ matrix.node-version }}
- uses: actions/setup-node@v2
24
+ uses: actions/setup-node@v4
25
with:
- node-version: ${{ matrix.node-version }}
26
+ node-version: ${{ matrix.node-version }}
27
+ cache: 'pnpm'
28
29
- name: Install dependencies
- run: npm install
- - run: npm run test
30
+ run: pnpm install --frozen-lockfile
31
32
+ - name: Run tests
33
+ run: pnpm run test
34
0 commit comments