Skip to content

Commit

Permalink
Fix travis.yml to run with correct Node.js version
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
mrnugget committed Mar 25, 2013
1 parent 95b2585 commit 3c6028e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 3c6028e

Please sign in to comment.