mirror of
https://github.com/fluencelabs/js-libp2p-tcp
synced 2025-04-25 03:22:28 +00:00
29 lines
413 B
YAML
29 lines
413 B
YAML
language: node_js
|
|
cache: npm
|
|
stages:
|
|
- check
|
|
- test
|
|
- cov
|
|
|
|
node_js:
|
|
- '10'
|
|
|
|
os:
|
|
- linux
|
|
- osx
|
|
- windows
|
|
|
|
script: npx nyc -s npm run test:node
|
|
after_success: npx nyc report --reporter=text-lcov > coverage.lcov && npx codecov
|
|
|
|
jobs:
|
|
include:
|
|
- stage: check
|
|
script:
|
|
- npx aegir commitlint --travis
|
|
- npx aegir dep-check
|
|
- npm run lint
|
|
|
|
notifications:
|
|
email: false
|