14 lines
331 B
YAML
14 lines
331 B
YAML
language: node_js
|
|
sudo: false
|
|
node_js:
|
|
- '0.10'
|
|
- '0.12'
|
|
- 'iojs'
|
|
before_install:
|
|
- "mkdir -p ~/.npm"
|
|
before_script:
|
|
- npm install -g istanbul jshint codeclimate-test-reporter
|
|
script:
|
|
- make ci
|
|
- CODECLIMATE_REPO_TOKEN=d3aad610220b6eaf4f51e38393c1b62586b1d68b898b42e418d9c2a8e0a7cb0d codeclimate < coverage/lcov.info
|