diff options
| -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: | 
