mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-15 04:10:40 -07:00
8 lines
309 B
YAML
8 lines
309 B
YAML
language: node_js
|
|
node_js:
|
|
- "4"
|
|
before_script:
|
|
- npm install -g mocha
|
|
after_script:
|
|
- NODE_ENV=test ./node_modules/.bin/istanbul cover --report lcovonly ./node_modules/mocha/bin/_mocha -- -R spec --recursive && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage
|