mirror of
https://github.com/rjNemo/federation
synced 2026-06-10 12:06:40 +00:00
17 lines
262 B
YAML
17 lines
262 B
YAML
language: node_js
|
|
node_js:
|
|
- "10"
|
|
- "8"
|
|
- "6"
|
|
|
|
install:
|
|
- npm install -g coveralls
|
|
- npm install
|
|
|
|
script:
|
|
- npm test
|
|
- npm run coverage
|
|
- coveralls < ./coverage/lcov.info || true # ignore coveralls error
|
|
|
|
# Allow Travis tests to run in containers.
|
|
# sudo: false
|