diff options
author | Jordan Harband <ljharb@gmail.com> | 2015-04-11 15:35:18 -0700 |
---|---|---|
committer | Richard van Velzen <rvanvelzen1@gmail.com> | 2015-04-14 20:06:09 +0200 |
commit | 763bd36b604c80ecbf7387bac97cb366e54aaa1f (patch) | |
tree | 803777d20720910209081a3d2d29c4a0b6cac186 /.travis.yml | |
parent | 0552dbd93c2f2f4f5ed5b7b2465fe401d86680b9 (diff) | |
download | tracifyjs-763bd36b604c80ecbf7387bac97cb366e54aaa1f.tar.gz tracifyjs-763bd36b604c80ecbf7387bac97cb366e54aaa1f.zip |
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.
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 7 |
1 files changed, 6 insertions, 1 deletions
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 |