14 lines
186 B
YAML
14 lines
186 B
YAML
|
|
language: node_js
|
||
|
|
node_js:
|
||
|
|
- "6"
|
||
|
|
install:
|
||
|
|
- npm install
|
||
|
|
script:
|
||
|
|
- npm test
|
||
|
|
after_script:
|
||
|
|
- npm run coveralls
|
||
|
|
notifications:
|
||
|
|
email:
|
||
|
|
on_success: never
|
||
|
|
on_failure: always
|