Dominic Elm commited on
Commit
7edf287
·
unverified ·
1 Parent(s): a7d8693

ci: use correct versions (#2)

Browse files
Files changed (1) hide show
  1. .github/workflows/ci.yaml +9 -8
.github/workflows/ci.yaml CHANGED
@@ -10,18 +10,19 @@ jobs:
10
  test:
11
  name: Test
12
  runs-on: ubuntu-latest
13
- strategy:
14
- matrix:
15
- node-version: [20.15.1]
16
  steps:
17
- - name: Setup
18
- uses: pnpm/action-setup@v4
19
- with:
20
- version: 9.4.0
21
-
22
  - name: Checkout
23
  uses: actions/checkout@v4
24
 
 
 
 
 
 
 
 
 
 
25
  - name: Install dependencies
26
  run: pnpm install
27
 
 
10
  test:
11
  name: Test
12
  runs-on: ubuntu-latest
 
 
 
13
  steps:
 
 
 
 
 
14
  - name: Checkout
15
  uses: actions/checkout@v4
16
 
17
+ - uses: actions/setup-node@v4
18
+ with:
19
+ node-version: '20.15.1'
20
+
21
+ - uses: pnpm/action-setup@v4
22
+ with:
23
+ version: 9.4.0
24
+ run_install: false
25
+
26
  - name: Install dependencies
27
  run: pnpm install
28