15 lines
277 B
YAML
Raw Permalink Normal View History

2017-09-20 23:19:33 +02:00
language: node_js
node_js:
- "6"
- "5"
- "4"
before_script:
- npm install -g istanbul
- npm install -g mocha
- npm install -g codeclimate-test-reporter
after_success:
- istanbul cover _mocha -- -R spec ./test/*.js
- codeclimate-test-reporter < ./coverage/lcov.info