videojs-quality-selector/.travis.yml

19 lines
363 B
YAML
Raw Normal View History

dist: focal
2017-06-21 00:43:49 +00:00
language: node_js
node_js:
2018-12-21 20:01:12 +00:00
- "node" # Latest node version
- "lts/*" # Latest LTS version
- "16"
- "14"
2017-06-21 00:43:49 +00:00
before_install: npm i -g npm@8.5.5
2017-06-21 00:43:49 +00:00
script:
2020-05-20 13:35:04 +00:00
- npm run commitlint
- npm run standards
2017-06-21 00:43:49 +00:00
- npm test
# For code coverage:
after_success:
cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage