File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 10
10
fail-fast : false
11
11
matrix :
12
12
node_version :
13
- - " 18 "
13
+ - " 22 "
14
14
runs-on : self-hosted
15
15
timeout-minutes : 10
16
16
env :
Original file line number Diff line number Diff line change @@ -32,12 +32,16 @@ jobs:
32
32
node-version : ${{ matrix.node_version }}
33
33
34
34
- run : npm install -g npm@latest
35
- if : ${{ matrix.node_version == '18' || matrix.node_version == ' 20' || matrix.node_version == '22' }}
35
+ if : ${{ matrix.node_version == '20' || matrix.node_version == '22' }}
36
36
37
37
# [email protected] drops support for Node.js v14 and v16
38
38
- run : npm install -g npm@"<10.0.0"
39
39
if : ${{ matrix.node_version == '14' || matrix.node_version == '16' }}
40
40
41
+ # [email protected] drops support for Node.js v18
42
+ - run : npm install -g npm@"<11.0.0"
43
+ if : ${{ matrix.node_version == '18'}}
44
+
41
45
- name : Bootstrap
42
46
run : npm ci
43
47
65
69
cache : ' npm'
66
70
cache-dependency-path : |
67
71
package-lock.json
68
- node-version : ' 18 '
72
+ node-version : ' 20 '
69
73
70
74
- run : npm install -g npm@latest
71
75
You can’t perform that action at this time.
0 commit comments