From 4121b590b13bb9a803d6adedb10f26ce2826ca4c Mon Sep 17 00:00:00 2001 From: Jordan Harband Date: Sat, 23 Jun 2018 11:50:12 -0700 Subject: [PATCH] [Tests] clean up test matrix --- .travis.yml | 27 ++++++--------------------- 1 file changed, 6 insertions(+), 21 deletions(-) diff --git a/.travis.yml b/.travis.yml index b4715855e7..c76763c676 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,7 @@ sudo: false language: node_js node_js: + - '10' - '9' - '8' - '7' @@ -15,7 +16,11 @@ script: - 'if [ -n "${PRETEST-}" ]; then npm run pretest ; fi' - 'if [ -n "${TEST-}" ]; then npm run unit-test ; fi' env: - - TEST=true + global: + - TEST=true + matrix: + - ESLINT=4 + - ESLINT=3 after_success: - 'if [ -n "${TEST-}" ]; then npm run coveralls ; fi' matrix: @@ -23,26 +28,6 @@ matrix: include: - node_js: 'lts/*' env: PRETEST=true - - node_js: '9' - env: TEST=true ESLINT=next - - node_js: '8' - env: TEST=true ESLINT=next - - node_js: '7' - env: TEST=true ESLINT=next - - node_js: '6' - env: TEST=true ESLINT=next - - node_js: '9' - env: TEST=true ESLINT=3 - - node_js: '8' - env: TEST=true ESLINT=3 - - node_js: '7' - env: TEST=true ESLINT=3 - - node_js: '6' - env: TEST=true ESLINT=3 - - node_js: '5' - env: TEST=true ESLINT=3 - - node_js: '4' - env: TEST=true ESLINT=3 allow_failures: - node_js: '9' - node_js: '7'