From 2fa70fc04ecf2ae41ec8ef324893fcfcf65cce09 Mon Sep 17 00:00:00 2001 From: Kienz Date: Tue, 14 Jan 2014 21:37:38 +0100 Subject: [PATCH] Quote node.js versions - otherwise 0.10 is truncated to 0.1 in travis-ci build matrix. See issue https://github.com/travis-ci/travis-web/issues/160. --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 95033c83..30164aed 100644 --- 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" script: 'npm run-script build && npm test' before_install: - sudo apt-get update -qq