diff options
| author | Stephen Blott | 2017-10-06 15:34:46 +0100 | 
|---|---|---|
| committer | GitHub | 2017-10-06 15:34:46 +0100 | 
| commit | 2c9582c83903cb40cd851dc44d57648bd1d1ac68 (patch) | |
| tree | a8e374c7124668a9a83269f9f22d09d0a35149ba | |
| parent | ab568be2cd9dac3dd24995bb074d1f2967117dd9 (diff) | |
| parent | 98cb18d94dd0c263869dc66fb085646570a440fa (diff) | |
| download | vimium-2c9582c83903cb40cd851dc44d57648bd1d1ac68.tar.bz2 | |
Merge pull request #2699 from mc10/patch-2
travis: Clean up config
| -rw-r--r-- | .travis.yml | 15 | 
1 files changed, 8 insertions, 7 deletions
| diff --git a/.travis.yml b/.travis.yml index a1484d2e..81d73211 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,12 +1,13 @@ +sudo: false  language: node_js -node_js: 0.12 +node_js: "8"  before_install: -  - "npm install -g coffee-script" -  - "npm install path@0.11" -  - "npm install util" -  - "npm install -g phantomjs@1.9.20" -  - "cake build" -script: "cake test" +  - npm install -g coffee-script +  - npm install path@0.11 +  - npm install util +  - npm install -g phantomjs@1.9.20 +  - cake build +script: cake test  notifications:    email: false  branches: | 
