From 79cd746d710c7fa045c16227076977f46c1a18d7 Mon Sep 17 00:00:00 2001 From: Julian Simioni Date: Tue, 9 Feb 2016 15:51:10 -0500 Subject: [PATCH] Update TravisCI config Adds Node 4.x versions, and containerized builds (faster). Connects pelias/pelias#258 --- .travis.yml | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index f2a4e06a..aff00086 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,16 @@ +sudo: false language: node_js -script: "npm run unit" node_js: - - "0.10" - - "0.12" -sudo: false \ No newline at end of file + - 0.10 + - 0.12 + - 4.0 + - 4.1 + - 4.2 +matrix: + allow_failures: + - node_js: 4.0 + - node_js: 4.1 + - node_js: 4.2 +env: + - TEST_SUITE=unit +script: "npm run $TEST_SUITE"