From 1c953dbfe04b6b43d30f865ef5325f6867e54200 Mon Sep 17 00:00:00 2001 From: Jared Hanson Date: Fri, 15 Nov 2024 09:57:25 -0800 Subject: [PATCH] Update workflow. --- .github/workflows/node.js-eol-20230430.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/node.js-eol-20230430.yml b/.github/workflows/node.js-eol-20230430.yml index 61d7c43..e5d818c 100644 --- a/.github/workflows/node.js-eol-20230430.yml +++ b/.github/workflows/node.js-eol-20230430.yml @@ -17,11 +17,10 @@ jobs: strategy: matrix: # The package-lock.json use version 3 of file format, which is - # [incompatible][1] with npm 6.x (distibuted with node 8.x - 14.x) and 5.x + # [incompatible][1] with npm 6.x (distibuted with node 8.x - 14.x). # # [1]: https://docs.npmjs.com/cli/v9/configuring-npm/package-lock-json#lockfileversion - node-version: [ 6.x ] -# node-version: [ 10.x, 8.x, 6.x ] + node-version: [ 14.x, 12.x, 10.x, 8.x ] steps: - uses: actions/checkout@v4 @@ -29,5 +28,5 @@ jobs: uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - - run: npm ci + - run: npm install - run: npm test