From 6aea8d869f5971d11b9bc90b1377bf424a591c1b Mon Sep 17 00:00:00 2001 From: Fritz Lin Date: Tue, 16 Jan 2024 21:34:52 +0800 Subject: [PATCH] Drop node6 from CI e2e-test due to unknown bug in npm cli https://github.com/npm/cli/issues/5032 --- .github/workflows/e2e-test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/e2e-test.yml b/.github/workflows/e2e-test.yml index f384c3f..29a1cf4 100644 --- a/.github/workflows/e2e-test.yml +++ b/.github/workflows/e2e-test.yml @@ -20,9 +20,9 @@ jobs: node-version: # trying to pick up the lowest versions within the supported options # https://github.com/actions/node-versions/blob/main/versions-manifest.json - - 6 + # - 6 - 8 - # - 10 # skip + - 10 # skip # - 12 # skip # - 14 # skip os: @@ -51,7 +51,7 @@ jobs: node -e "assert.equal(fs.readFileSync('tmp.json','utf8'), fs.readFileSync('result.json','utf8'))" - name: Test Jsonc # current jsonc implementation requires node>=8 - if: matrix.node-version == 8 + if: matrix.node-version >= 8 run: | cd test/fixtures jsonmerge --jsonc jsonc/*.json > tmp.jsonc