From a9f692a2d3eec551288c313488ffaa121f4fda72 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9mie=20Astori?= Date: Fri, 16 Dec 2016 02:02:48 -0500 Subject: [PATCH] Add Node.js v7, current stable, to Travis CI We are seeing more and more people installing on Node v7 so it's important to ensure `npm install` will pass correctly and our (limited but growing) test suite as well. --- .travis.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index d155ef52..b8930fb9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,8 @@ language: node_js node_js: -- 6 -- 4 +- 7 # Current stable +- 6 # Active LTS until 2018-04-18 +- 4 # Active LTS until 2017-04-01 matrix: fast_finish: true