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