From 0ba8aab93a95d70379fb7927ce08c89517d914b6 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Mon, 7 May 2018 12:24:23 -0400 Subject: [PATCH] Test Node 10 on travis matrix build (closes #5028) --- .travis.yml | 1 + scripts/txpush.sh | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index d67619a35..c94aba48e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,6 +2,7 @@ language: node_js node_js: - "6" - "8" + - "10" sudo: required before_script: - npm run all diff --git a/scripts/txpush.sh b/scripts/txpush.sh index 84b36fcac..5807b321b 100755 --- a/scripts/txpush.sh +++ b/scripts/txpush.sh @@ -10,7 +10,7 @@ echo "TRAVIS_NODE_VERSION=$TRAVIS_NODE_VERSION" if [[ "$TRAVIS" != "true" ]]; then exit 0; fi if [[ "$TRAVIS_PULL_REQUEST" != "false" ]]; then exit 0; fi if [[ "$TRAVIS_BRANCH" != "master" ]]; then exit 0; fi -if [[ "$TRAVIS_NODE_VERSION" != "6" ]]; then exit 0; fi +if [[ "$TRAVIS_NODE_VERSION" != "10" ]]; then exit 0; fi echo "Pushing source strings to Transifex..." pip install virtualenv