From 2e843fcbcf78138c5c9a03f5a439d2326920c573 Mon Sep 17 00:00:00 2001 From: Danny Fritz Date: Tue, 20 Sep 2016 19:49:56 -0600 Subject: [PATCH] Build: Add Node 6.x to Travis (fixes #99) --- .travis.yml | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index 89058e6..9b69b23 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,11 @@ -language: node_js -sudo: false -node_js: - - "0.12" - - 4 -after_success: - - npm run coveralls +language: node_js +sudo: false +node_js: + - "0.12" + - 4 + - 6 +before_script: + - npm install -g npm-install-peers + - npm-install-peers +after_success: + - npm run coveralls