28 lines
565 B
YAML
28 lines
565 B
YAML
language: node_js
|
|
|
|
node_js:
|
|
- stable
|
|
- v0.10
|
|
- v0.12
|
|
- v4
|
|
- v5
|
|
|
|
sudo: false
|
|
|
|
cache:
|
|
directories:
|
|
- node_modules
|
|
|
|
env:
|
|
global:
|
|
- secure: dILRjgEPjnDy8wcqSkKS4KoxSykeffpReeiRXcXNK9iJvoxNQpfEycVuC7eG4KmdHdLj8RmrPIHE3S2x+su7LD5Nly/StaxfYTWIi1++3wSLP+SlDdv9h+uy2uA6bMsP4hys2ArQ+i/P5V4r5zq1iLIf3mavIchNwTT3ThhOIso=
|
|
|
|
script:
|
|
- npm test
|
|
- npm run sa
|
|
|
|
after_script:
|
|
- npm run cover
|
|
- cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js
|
|
- cat ./coverage/lcov.info | ./node_modules/codeclimate-test-reporter/bin/codeclimate.js
|