File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 22
22
- uses : actions/checkout@v3
23
23
- uses : actions/setup-node@v3
24
24
with :
25
- node-version : 14
25
+ node-version : 16
26
26
- run : npm ci
27
27
- run : npm test
28
28
` ` `
@@ -39,8 +39,8 @@ The `node-version` input supports the Semantic Versioning Specification, for mor
39
39
40
40
Examples :
41
41
42
- - Major versions : ` 12 ` , `14 `, `16 `
43
- - More specific versions : ` 10.15` , `14.2.0` , `16.3 .0`
42
+ - Major versions : ` 14 ` , `16 `, `18 `
43
+ - More specific versions : ` 10.15` , `16.15.1` , `18.4 .0`
44
44
- NVM LTS syntax : ` lts/erbium` , `lts/fermium`, `lts/*`, `lts/-n`
45
45
- Latest release : ` *` or `latest`/`current`/`node`
46
46
71
71
- uses: actions/checkout@v3
72
72
- uses: actions/setup-node@v3
73
73
with:
74
- node-version: 14
74
+ node-version: 16
75
75
cache: 'npm'
76
76
- run: npm ci
77
77
- run: npm test
84
84
- uses: actions/checkout@v3
85
85
- uses: actions/setup-node@v3
86
86
with:
87
- node-version: 14
87
+ node-version: 16
88
88
cache: 'npm'
89
89
cache-dependency-path: subdir/package-lock.json
90
90
- run: npm ci
99
99
runs-on: ubuntu-latest
100
100
strategy:
101
101
matrix:
102
- node: [ 12, 14, 16 ]
102
+ node: [ 14, 16, 18 ]
103
103
name: Node ${{ matrix.node }} sample
104
104
steps:
105
105
- uses: actions/checkout@v3
You can’t perform that action at this time.
0 commit comments