From 680cb317ed9ef8e7a05ecaa10673b24ca6b4e11a Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Sat, 28 May 2016 13:39:40 -0700 Subject: [PATCH] Travis: Upgrade Node.js from v5 to v6 (#19980) v6 is the current stable version and will be an LTS version. v5 is not an LTS version. Refs https://github.com/nodejs/LTS --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 058a26aa4e..2f5ad1e965 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,7 +5,7 @@ git: depth: 10 node_js: - "4" - - "5" + - "6" before_install: # Remove ./node_modules/.bin from PATH so node-which doesn't replace Unix which and cause RVM to barf. See https://github.com/travis-ci/travis-ci/issues/5092 - export PATH=$(python -c 'from sys import argv;from collections import OrderedDict as od;print(":".join(od((p,None) for p in argv[1].split(":") if p.startswith("/")).keys()))' "$PATH")