From 3c6028e0e35b5ba713673f8f9f3625ab1cf25bce Mon Sep 17 00:00:00 2001 From: Thorsten Ball Date: Mon, 25 Mar 2013 10:49:20 +0100 Subject: [PATCH] Fix travis.yml to run with correct Node.js version MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This changes the `.travis.yml` to use the correct Node.js version by using strings as version numbers. Relevant Travis CI documentation page: http://about.travis-ci.org/docs/user/languages/javascript-with-nodejs/#Choosing-Node-versions-to-test-against Without using strings to specify the desired versions Travis CI runs on Node.js 0.1 instead of 0.10. --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index d2ad37b..c0eba60 100755 --- a/.travis.yml +++ b/.travis.yml @@ -1,8 +1,8 @@ language: node_js node_js: - - 0.6 - - 0.8 - - 0.10 + - "0.6" + - "0.8" + - "0.10" before_install: - sudo apt-get update