aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/ci.yml
diff options
context:
space:
mode:
authorAlex Lam S.L <alexlamsl@gmail.com>2020-04-14 03:13:42 +0100
committerGitHub <noreply@github.com>2020-04-14 10:13:42 +0800
commitc4d28e3b2a2d82c7e5e3b398513755b507a75e76 (patch)
tree955bed9c2cfb691ea84abf8476cc2dd0a507f907 /.github/workflows/ci.yml
parent77261e1ee037f3eea2d5ec80abb1387d4ba5c67e (diff)
downloadtracifyjs-c4d28e3b2a2d82c7e5e3b398513755b507a75e76.tar.gz
tracifyjs-c4d28e3b2a2d82c7e5e3b398513755b507a75e76.zip
expand testing on Node.js versions (#3779)
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r--.github/workflows/ci.yml6
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