14 lines
345 B
YAML
14 lines
345 B
YAML
sudo: false
|
|
language: node_js
|
|
node_js:
|
|
- "0.11"
|
|
- "0.10"
|
|
- "0.8"
|
|
before_script:
|
|
- npm install -g istanbul
|
|
- npm install -g codeclimate-test-reporter
|
|
script: istanbul cover -v test/run.js
|
|
after_script:
|
|
- codeclimate < coverage/lcov.info
|
|
env:
|
|
- CODECLIMATE_REPO_TOKEN=dc2907ac19db818a3d2272b8af65569e9f0a8a7d5d508a80bd542a817c372e03 |