File tree Expand file tree Collapse file tree 1 file changed +10
-5
lines changed Expand file tree Collapse file tree 1 file changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -27,21 +27,26 @@ jobs:
27
27
strategy :
28
28
matrix :
29
29
os : [ubuntu-latest, macos-latest, windows-latest]
30
- node : [16, 18, 20, 22]
30
+ node : [18, 20, 22]
31
31
fail-fast : false
32
32
33
33
steps :
34
- - uses : actions/checkout@v4
34
+ - name : Checkout
35
+ uses : actions/checkout@v4
35
36
36
- - name : Setup pnpm
37
- uses : pnpm/action- setup@v4
37
+ - name : Set node version to ${{ matrix.node }}
38
+ uses : actions/ setup-node @v4
38
39
with :
39
- standalone : ${{ matrix.node == 16 }}
40
+ node-version : ${{ matrix.node }}
41
+
42
+ - name : Enable Corepack
43
+ run : corepack enable
40
44
41
45
- name : Set node version to ${{ matrix.node }}
42
46
uses : actions/setup-node@v4
43
47
with :
44
48
node-version : ${{ matrix.node }}
49
+ cache : pnpm
45
50
46
51
- name : Install
47
52
run : pnpm i
You can’t perform that action at this time.
0 commit comments