Skip to content
This repository has been archived by the owner on Aug 1, 2023. It is now read-only.

chore: remove peer deps #265

Merged
merged 10 commits into from
Apr 9, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 8 additions & 13 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,25 +1,28 @@
language: node_js
cache: npm
dist: bionic

# only build PRs and master
branches:
only:
- master
- /^release\/.*$/

stages:
- check
- test
- cov

node_js:
- '12'
- 'lts/*'
- 'node'

os:
- linux
- osx
- windows

script:
- npx nyc -s npm run test:node -- --bail
before_install: npm install -g @mapbox/node-pre-gyp
script: npm run test:node -- --cov
after_success: npx nyc report --reporter=text-lcov > coverage.lcov && npx codecov

jobs:
Expand All @@ -36,15 +39,7 @@ jobs:
name: chrome
addons:
chrome: stable
script:
- npx aegir test -t browser --bail

- stage: test
name: firefox
addons:
firefox: latest
script:
- npx aegir test -t browser --bail -- --browsers FirefoxHeadless
script: npx aegir test -t browser -t webworker

notifications:
email: false
Loading