Commit 689073d authored Jun 5, 2024 · 52 / 52 · Verified
1 parent 2803a2b commit 689073d Copy full SHA for 689073d
File tree 3 files changed +3
-12
lines changed
3 files changed +3
-12
lines changed Original file line number Diff line number Diff line change @@ -135,7 +135,7 @@ jobs:
135
135
136
136
- name : Node.js 21.x
137
137
node-version : " 21.6"
138
-
138
+
139
139
- name : Node.js 22.x
140
140
node-version : " 22.0"
141
141
@@ -148,15 +148,6 @@ jobs:
148
148
nvm install --default ${{ matrix.node-version }}
149
149
dirname "$(nvm which ${{ matrix.node-version }})" >> "$GITHUB_PATH"
150
150
151
- - name : Configure npm
152
- run : |
153
- npm config set loglevel error
154
- if [[ "$(npm config get package-lock)" == "true" ]]; then
155
- npm config set package-lock false
156
- else
157
- npm config set shrinkwrap false
158
- fi
159
-
160
151
- name : Install npm module(s) ${{ matrix.npm-i }}
161
152
run : npm install --save-dev ${{ matrix.npm-i }}
162
153
if : matrix.npm-i != ''
Original file line number Diff line number Diff line change
1
+ package-lock = false
Original file line number Diff line number Diff line change @@ -77,12 +77,11 @@ function getMajorVersion(versionString) {
77
77
}
78
78
79
79
function shouldSkipQuery ( versionString ) {
80
- // Temporarily skipping this test on 21 and 22
80
+ // Temporarily skipping this test on 22
81
81
// update this implementation to run on those release lines on supported versions once they exist
82
82
// upstream tracking https://github.com/nodejs/node/pull/51719
83
83
// express tracking issue: https://github.com/expressjs/express/issues/5615
84
84
var majorsToSkip = {
85
- "21" : true ,
86
85
"22" : true
87
86
}
88
87
return majorsToSkip [ getMajorVersion ( versionString ) ]
You can’t perform that action at this time.
0 commit comments