mirror of
https://gitea.invidious.io/iv-org/videojs-quality-selector.git
synced 2024-08-15 00:43:13 +00:00
18 lines
359 B
YAML
18 lines
359 B
YAML
language: node_js
|
|
node_js:
|
|
- "node" # Latest node version
|
|
- "lts/*" # Latest LTS version
|
|
- "12"
|
|
- "10"
|
|
- "8"
|
|
|
|
before_install: npm i -g npm@6.13.4
|
|
|
|
script:
|
|
- npm run commitlint
|
|
- grunt standards
|
|
- npm test
|
|
|
|
# For code coverage:
|
|
after_success:
|
|
cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage
|