rickvanlieshout.com/travis.yml

16 lines
266 B
YAML
Raw Normal View History

2018-11-09 18:08:48 +01:00
language: node_js
node_js:
- '8'
- '9'
- '10'
2018-11-09 20:45:11 +01:00
install:
- npm install -g codecov
2016-03-11 23:28:19 +01:00
script:
2018-11-09 18:08:48 +01:00
- yarn install
- yarn lint:all
- yarn test:coverage --runInBand --no-cache
- yarn test --runInBand --no-cache
2018-11-09 20:39:40 +01:00
- codecov
2018-11-09 18:08:48 +01:00
cache:
directories:
- node_modules