js-mafmt/.travis.yml
Vasco Santos 674e7a8237 Revert "chore: Update to latest multiaddr (p2p by default over ipfs) (#43)"
This reverts commit bbd2c1ddc01a68ed330248fd101383710d64578e.
2019-09-11 19:29:04 +02:00

43 lines
735 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 -- --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 -- -i wrtc -i electron-webrtc
- npm run lint
- stage: test
name: chrome
addons:
chrome: stable
script:
- npx aegir test -t browser
- stage: test
name: firefox
addons:
firefox: latest
script:
- npx aegir test -t browser -- --browsers FirefoxHeadless
notifications:
email: false