videojs-quality-selector/.travis.yml

19 lines
359 B
YAML
Raw Normal View History

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
- "12"
2018-12-21 20:01:12 +00:00
- "10"
- "8"
2017-06-21 00:43:49 +00:00
2020-05-20 15:00:44 +00:00
before_install: npm i -g npm@6.13.4
2017-06-21 00:43:49 +00:00
script:
2020-05-20 13:35:04 +00:00
- npm run commitlint
2017-06-21 00:43:49 +00:00
- grunt standards
- npm test
# For code coverage:
after_success:
cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage