We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8da1228 commit eaa7d84Copy full SHA for eaa7d84
.github/workflows/integrationTests.yml
@@ -272,11 +272,13 @@ jobs:
272
273
npm:
274
needs: Pretest
275
- name: npm (${{ matrix.os }})
+ name: npm (${{ matrix.os }}) - node ${{ matrix.node }}
276
strategy:
277
fail-fast: false
278
matrix:
279
os: [ ubuntu-latest, macos-13, windows-latest ]
280
+ # Testing both npm < 8.19 and npm >= 8.19
281
+ node: [ 15, 20 ]
282
runs-on: ${{ matrix.os }}
283
steps:
284
- name: Checkout code
@@ -287,9 +289,11 @@ jobs:
287
289
- name: Install npm
288
290
uses: actions/setup-node@v3
291
with:
- node-version: "15"
292
+ node-version: ${{ matrix.node }}
293
+
294
- name: Config list
295
run: npm config ls -l
296
297
- name: Install Java
298
uses: actions/setup-java@v3
299
0 commit comments