mirror of
https://gitea.invidious.io/iv-org/videojs-quality-selector.git
synced 2024-08-15 00:43:13 +00:00
15 lines
329 B
YAML
15 lines
329 B
YAML
language: node_js
|
|
# 4.3.2 is what AWS Lambda currently uses
|
|
node_js:
|
|
- "5"
|
|
- "4.3.2"
|
|
|
|
before_install: if [[ `npm -v` != 3* ]]; then npm i -g npm@3; fi
|
|
|
|
script:
|
|
- grunt standards
|
|
- npm test
|
|
|
|
# For code coverage:
|
|
after_success:
|
|
cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage
|