1
0
mirror of https://github.com/fluencelabs/js-libp2p-crypto synced 2025-03-16 10:20:59 +00:00

46 lines
715 B
YAML
Raw Normal View History

language: node_js
cache: npm
stages:
- check
- test
- cov
node_js:
- '10'
2019-07-11 15:05:24 +02:00
- '12'
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 build --bundlesize
- npx aegir dep-check
- 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