mirror of
https://github.com/iv-org/videojs-quality-selector.git
synced 2024-10-01 06:35:49 -04:00
16 lines
329 B
YAML
16 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
|