18 lines
175 B
YAML
18 lines
175 B
YAML
|
language: node_js
|
||
|
node_js:
|
||
|
- "10"
|
||
|
- "12"
|
||
|
- "14"
|
||
|
- "15"
|
||
|
|
||
|
#branches:
|
||
|
# only:
|
||
|
# - master
|
||
|
|
||
|
sudo: false
|
||
|
|
||
|
before_script:
|
||
|
- npm run lint
|
||
|
- npm run build
|
||
|
- npm test
|