2014-03-31 14:31:31 +02:00
|
|
|
language: node_js
|
2014-06-29 23:48:35 +02:00
|
|
|
before_install:
|
|
|
|
- npm install -g npm@~1.4.18
|
2014-03-31 14:31:31 +02:00
|
|
|
node_js:
|
|
|
|
- "0.10"
|
2014-06-29 23:48:35 +02:00
|
|
|
- "0.8"
|
2014-07-01 13:45:52 +02:00
|
|
|
script:
|
2014-09-08 15:02:53 +02:00
|
|
|
- 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
|
2014-07-01 13:45:52 +02:00
|
|
|
before_script:
|
|
|
|
- npm install -g istanbul
|
2014-07-01 15:29:05 +02:00
|
|
|
- npm install coveralls
|