File tree 1 file changed +33
-4
lines changed
1 file changed +33
-4
lines changed Original file line number Diff line number Diff line change 18
18
- Node.js 12.x
19
19
- Node.js 14.x
20
20
- Node.js 16.x
21
+ - Node.js 17.x
22
+ - Node.js 18.x
23
+ - Node.js 19.x
24
+ - Node.js 20.x
25
+ - Node.js 21.x
26
+ - Node.js 22.x
21
27
22
28
include :
23
29
- name : Node.js 0.10
34
40
35
41
- name : Node.js 8.x
36
42
node-version : " 8.17"
37
-
43
+
38
44
39
45
- name : Node.js 10.x
40
46
node-version : " 10.24"
49
55
- name : Node.js 16.x
50
56
node-version : " 16.6"
51
57
58
+ - name : Node.js 17.x
59
+ node-version : " 17.6"
60
+
61
+ - name : Node.js 18.x
62
+ node-version : " 18.14"
63
+
64
+ - name : Node.js 19.x
65
+ node-version : " 19.6"
66
+
67
+ - name : Node.js 20.x
68
+ node-version : " 20.12"
69
+
70
+ - name : Node.js 21.x
71
+ node-version : " 21.7"
72
+
73
+ - name : Node.js 22.x
74
+ node-version : " 22.0"
75
+
52
76
steps :
53
- - uses : actions/checkout@v2
77
+ - uses : actions/checkout@v4
54
78
55
79
- name : Install Node.js ${{ matrix.node-version }}
56
80
shell : bash -eo pipefail -l {0}
59
83
dirname "$(nvm which ${{ matrix.node-version }})" >> "$GITHUB_PATH"
60
84
61
85
- name : Configure npm
62
- run : npm config set shrinkwrap false
86
+ run : |
87
+ if [[ "$(npm config get package-lock)" == "true" ]]; then
88
+ npm config set package-lock false
89
+ else
90
+ npm config set shrinkwrap false
91
+ fi
63
92
64
93
- name : Install npm module(s) ${{ matrix.npm-i }}
65
94
run : npm install --save-dev ${{ matrix.npm-i }}
@@ -114,7 +143,7 @@ jobs:
114
143
needs : test
115
144
runs-on : ubuntu-latest
116
145
steps :
117
- - name : Uploade code coverage
146
+ - name : Upload code coverage
118
147
uses : coverallsapp/github-action@master
119
148
with :
120
149
github-token : ${{ secrets.github_token }}
You can’t perform that action at this time.
0 commit comments