From 0a44e664587e908acd5d3e64d5dce0cd574f534a Mon Sep 17 00:00:00 2001 From: Luke Blaney Date: Wed, 22 May 2024 20:10:22 +0100 Subject: [PATCH] Move node 10 into the legacy test matrix Manually install `esm` as part of the legacy test job, and ignore the lockfile --- .github/workflows/verify.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml index b1fcb84..0d48e63 100644 --- a/.github/workflows/verify.yml +++ b/.github/workflows/verify.yml @@ -20,7 +20,7 @@ jobs: strategy: matrix: - node-version: [10.x, 12.x, 14.x, 16.x, 18.x, 20.x] + node-version: [12.x, 14.x, 16.x, 18.x, 20.x] steps: - uses: actions/checkout@v4 @@ -61,7 +61,7 @@ jobs: strategy: matrix: - node-version: [0.10.x, 0.12.x, 4.x, 6.x, 8.x] + node-version: [0.10.x, 0.12.x, 4.x, 6.x, 8.x, 10.x] needs: build steps: @@ -78,5 +78,5 @@ jobs: name: build-output - name: npm install and test run: | - npm install mocha@3 chai@3 + npm install mocha@3 chai@3 esm@3 --no-package-lock npm run test-unit