node-red/.travis.yml

13 lines
373 B
YAML
Raw Normal View History

2015-07-22 12:06:14 +00:00
sudo: false
2014-03-31 12:31:31 +00:00
language: node_js
2014-06-29 21:48:35 +00:00
before_install:
- npm install -g npm@~1.4.18
2014-03-31 12:31:31 +00:00
node_js:
2015-02-07 19:57:58 +00:00
- "0.12"
2014-03-31 12:31:31 +00:00
- "0.10"
script:
- istanbul cover ./node_modules/.bin/grunt --report lcovonly && istanbul report text && ( cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js || true ) && rm -rf coverage
before_script:
- npm install -g istanbul
- npm install coveralls