From 8ce458fcaeea65f7315ebc5d6af808eff82af4a6 Mon Sep 17 00:00:00 2001 From: Andres Suarez Date: Tue, 27 Oct 2020 22:12:24 -0400 Subject: [PATCH] Limit travis full tests to Node 6 and up --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 9fcbbd2..d15ed63 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,12 +11,12 @@ node_js: - "14" script: - case "$TRAVIS_NODE_VERSION" in - 4|5.6.0) + 4|5.6.0|5) tap test/node-version-test.js ;; *) npm run test + npm run lint + npm run bench ;; esac - - npm run lint - - npm run bench