aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml6
-rw-r--r--.github/workflows/ufuzz.yml1
2 files changed, 6 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
diff --git a/.github/workflows/ufuzz.yml b/.github/workflows/ufuzz.yml
index 7a8c70c0..5e360f2b 100644
--- a/.github/workflows/ufuzz.yml
+++ b/.github/workflows/ufuzz.yml
@@ -27,6 +27,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