We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c033b58 commit 12ac200Copy full SHA for 12ac200
1 file changed
.github/workflows/ci.yml
@@ -12,20 +12,22 @@ jobs:
12
job:
13
runs-on: ubuntu-latest
14
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
21
- node-version: 20
22
- cache: 'pnpm'
+ - uses: actions/checkout@v4
+ - uses: pnpm/action-setup@v4
+ with:
+ version: 8
+ run_install: true
23
24
- - name: Installing deps
25
- run: pnpm install
+ - uses: actions/setup-node@v4
+ node-version: 22
+ cache: "pnpm"
26
27
- - name: Building
28
- run: pnpm run build
+ - name: Installing deps
+ run: pnpm install
29
30
- - name: Testing
31
- run: pnpm run test:CI
+ - name: Building
+ run: pnpm run build
+
32
+ - name: Testing
33
+ run: pnpm run test:CI
0 commit comments