From 6a3ede059daadb9815bd42cb6898d33a5fea40d0 Mon Sep 17 00:00:00 2001 From: David Majda Date: Fri, 15 Jan 2016 10:32:21 +0100 Subject: [PATCH] .travis.yml: Tweak Node.js versions Do not test under io.js (which is no longer a thing), test under Node.js 4.0.x and 5.0.x. Zero minor versions are intentional, I wan't to make sure that PEG.js doesn't depend on any features added later in the 4.x and 5.x cycle. --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index fcf04e0..f5ee5cc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,8 @@ language: node_js node_js: - "0.10" - "0.12" - - "iojs" + - "4.0" + - "5.0" cache: directories: - node_modules