Welcome to mirror list, hosted at ThFree Co, Russian Federation.

.travis.yml - github.com/twbs/rewire.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 929d5ed8612623447af4d0d151a3334488167fb5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
language: node_js
node_js:
  - "0.10"
  - "0.12"
  - "4"
  - "5"

script:
  - npm test
after_success:
  - npm install -g istanbul
  - npm install coveralls
  - istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage