-
-
Notifications
You must be signed in to change notification settings - Fork 263
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6c9ee13
commit 7ea4804
Showing
1 changed file
with
13 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,18 @@ | ||
language: node_js | ||
node_js: | ||
- "0.6" | ||
- "0.8" | ||
- "0.10" | ||
- "0.11" | ||
before_install: "test $TRAVIS_NODE_VERSION = '0.8' && npm install -g [email protected] || true" | ||
script: "npm run-script test-travis" | ||
after_script: "test $TRAVIS_NODE_VERSION = '0.10' && npm install coveralls@2 && cat ./coverage/lcov.info | coveralls" | ||
matrix: | ||
allow_failures: | ||
- node_js: "0.11" | ||
fast_finish: true | ||
before_install: | ||
- "test $TRAVIS_NODE_VERSION != '0.6' || sed -i 's/devDependencies/optionalDependencies/' package.json" | ||
- "test $TRAVIS_NODE_VERSION != '0.8' || npm install -g [email protected]" | ||
script: | ||
- "test $TRAVIS_NODE_VERSION != '0.6' || npm test" | ||
- "test $TRAVIS_NODE_VERSION = '0.6' || npm run-script test-travis" | ||
after_script: | ||
- "test $TRAVIS_NODE_VERSION = '0.10' && npm install coveralls@2 && cat ./coverage/lcov.info | coveralls" |