From c0b4e751f4a5edb7d3f2273159ef438dc1d1640e Mon Sep 17 00:00:00 2001 From: Jonathan Stoikovitch Date: Sat, 21 Oct 2017 14:57:54 -0700 Subject: [PATCH] small refactor of Travis CI confir, dropping support of node v0.x --- .travis.yml | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/.travis.yml b/.travis.yml index 283581e..118cb11 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,17 +1,14 @@ +sudo: false language: node_js -notifications: - email: - on_success: never - on_failure: change - -install: - - npm install - node_js: - - "0.10" - - "0.12" - "4" + - "6" - "node" +cache: + directories: + - node_modules + - $HOME/.npm + after_script: "npm install coveralls@2 && cat ./coverage/lcov.info | coveralls"