mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2024-12-25 14:29:36 +01:00
18 lines
299 B
YAML
18 lines
299 B
YAML
language: node_js
|
|
node_js:
|
|
- '8'
|
|
- '9'
|
|
- '10'
|
|
install:
|
|
- npm install -g codecov
|
|
script:
|
|
- yarn install
|
|
- yarn flow-typed
|
|
- yarn lint
|
|
- yarn test:coverage --runInBand --no-cache
|
|
- yarn test --runInBand --no-cache
|
|
- codecov
|
|
cache:
|
|
directories:
|
|
- node_modules
|
|
- flow-typed |