From 98cb18d94dd0c263869dc66fb085646570a440fa Mon Sep 17 00:00:00 2001 From: Kevin Ji Date: Wed, 4 Oct 2017 02:19:48 -0700 Subject: travis: Clean up config Use a non-ancient version of Node in sudo-less mode. Scripts do not need to be wrapped with quotes.--- .travis.yml | 15 ++++++++------- 1 file 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: -- cgit v1.2.3