anyfetch-file-watcher
Version:
Watch for file changes, and send them to anyFetch.
12 lines (11 loc) • 365 B
YAML
language: node_js
node_js:
- '0.10'
before_script:
- npm install -g istanbul
- npm install coveralls
- npm install mocha-lcov-reporter
script:
- npm test
after_script:
- NODE_ENV=test istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage