1
0
mirror of https://github.com/node-red/node-red-nodes.git synced 2023-10-10 13:36:58 +02:00
node-red-nodes/.travis.yml

16 lines
528 B
YAML
Raw Normal View History

2015-07-22 13:12:30 +01:00
sudo: false
language: node_js
node_js:
2015-06-30 09:57:48 +01:00
- "0.10"
2015-07-22 12:14:51 +01:00
- "0.12"
2015-07-22 12:21:25 +01:00
before_install:
- npm install -g npm@~1.4.28
before_script:
2015-06-30 10:56:06 +01:00
- npm install -g istanbul grunt-cli
2015-06-30 09:57:48 +01:00
- npm install coveralls
- npm install git+https://github.com/node-red/node-red.git
2015-06-30 09:57:48 +01:00
- export NODE_RED_HOME=`pwd`/node_modules/node-red
2015-06-30 13:33:54 +01:00
- (cd $NODE_RED_HOME ; npm install nock@~0.48.0)
script:
2015-07-22 12:25:34 +01:00
- istanbul cover grunt --report lcovonly && istanbul report text && ( cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js || true ) && rm -rf coverage