19 lines
204 B
YAML
19 lines
204 B
YAML
sudo: false
|
|
|
|
language: node_js
|
|
|
|
node_js:
|
|
- '0.10'
|
|
- '0.12'
|
|
|
|
before_script:
|
|
- npm run pretest
|
|
|
|
script:
|
|
- npm run test-verbose
|
|
|
|
notifications:
|
|
email:
|
|
on_success: change
|
|
on_failure: always
|