From fd37a6a4c83720091b41689cdcae7f4b98e69385 Mon Sep 17 00:00:00 2001 From: Ronan Jouchet Date: Sun, 15 Mar 2020 17:23:48 -0400 Subject: [PATCH] Align full tests (linter+tests) with deployment platform --- .travis.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 5503807..6bf2275 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,15 +4,15 @@ os: - osx - windows node_js: -- '13' # Changing this? Remind to adjust the linter condition below causing linter to run for only one version (for faster CI) -- '12' +- '13' +- '12' # Changing this? Remind to keep linter+deploy conditions below aligned - '8' install: - npm install - npm run build script: -# Only run linter once, for faster CI -- if [ "$TRAVIS_OS_NAME" = "linux" ] && [ "$TRAVIS_NODE_VERSION" = "13" ]; then npm run lint; fi +# Only run linter once, for faster CI. Remind to keep linter+deploy conditions below aligned +- if [ "$TRAVIS_OS_NAME" = "linux" ] && [ "$TRAVIS_NODE_VERSION" = "12" ]; then npm run lint; fi - npm test deploy: provider: npm @@ -23,5 +23,5 @@ deploy: on: tags: true repo: jiahaog/nativefier - node_js: '12' + node_js: '12' # Remind to keep linter+deploy conditions above aligned os: linux