24 lines
332 B
YAML
24 lines
332 B
YAML
|
language: node_js
|
||
|
|
||
|
node_js:
|
||
|
- "8"
|
||
|
- "10"
|
||
|
- "11"
|
||
|
- "12"
|
||
|
install:
|
||
|
- yarn install
|
||
|
script:
|
||
|
- yarn run lint
|
||
|
- yarn run compile
|
||
|
- yarn run test
|
||
|
|
||
|
jobs:
|
||
|
include:
|
||
|
- stage: after_success
|
||
|
script:
|
||
|
- yarn install
|
||
|
- yarn run compile
|
||
|
- yarn run test-coverage
|
||
|
- yarn run send-coveralls
|
||
|
node_js: 10
|