From: Jordan Harband Date: Sat, 11 Apr 2015 22:35:18 +0000 (-0700) Subject: Test on latest `node` and `io.js` X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=763bd36b604c80ecbf7387bac97cb366e54aaa1f;p=UglifyJS.git Test on latest `node` and `io.js` Per https://github.com/mishoo/UglifyJS2/commit/0262b4244c13b3ef148bf096874847aea84b93e5 - if you're going to stop testing on 0.8, you should be testing on 0.12. Also allow failures on unstable nodes and "older than two latest" `io.js` versions, and enable "sudo: false" which makes tests run faster. --- diff --git a/.travis.yml b/.travis.yml index 82460de5..4e046b8f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,10 @@ language: node_js before_install: "npm install -g npm" node_js: - - "0.10" + - "iojs" + - "0.12" - "0.11" + - "0.10" +matrix: + fast_finish: true +sudo: false