Swap-Aggregator-Subgraph/node_modules/protons/.travis.yml
2022-07-03 07:27:35 +05:30

31 lines
436 B
YAML

language: node_js
cache: npm
stages:
- check
- test
- cov
node_js:
- '10'
- '12'
- '14'
os:
- linux
- osx
- windows
script: npx nyc -s npm run test -- --bail
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