diff options
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r-- | .github/workflows/ci.yml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6b1d796c..76dea5b1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,9 +4,12 @@ jobs: test: strategy: matrix: - node: [ "0.10", "0.12", "4", "6", "8", "10", latest ] + node: [ "0.8", "0.10", "0.12", "4", "6", "8", "10", "12", latest ] os: [ ubuntu-latest, windows-latest ] script: [ compress, mocha, release/benchmark, release/jetstream ] + exclude: + - node: "0.8" + script: release/jetstream name: ${{ matrix.node }} ${{ matrix.os }} ${{ matrix.script }} runs-on: ${{ matrix.os }} env: @@ -33,6 +36,7 @@ jobs: npm config set audit false npm config set optional false npm config set save false + npm config set strict-ssl false npm config set update-notifier false npm --version while !(npm install); do echo "'npm install' failed - retrying..."; done |