18 lines
216 B
YAML
18 lines
216 B
YAML
|
language: node_js
|
||
|
sudo: false
|
||
|
|
||
|
node_js:
|
||
|
- "0.10"
|
||
|
- "0.12"
|
||
|
- "4"
|
||
|
- "6"
|
||
|
|
||
|
after_success:
|
||
|
- npm run coverage
|
||
|
- npm i codecov
|
||
|
- codecov -f ./coverage/lcov.info
|
||
|
|
||
|
notifications:
|
||
|
email:
|
||
|
on_success: never
|