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: 9740083da7d5e5ad2d85763c66bec105b3d865cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
language: node_js
node_js:
  - "6"
  - "8"
  - "10"

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