renovate/.travis.yml

38 lines
551 B
YAML
Raw Normal View History

notifications:
email: false
2017-11-23 09:06:10 +00:00
language: node_js
node_js:
- "8"
sudo: false
if: tag IS blank
2017-11-23 09:06:10 +00:00
before_install:
- curl -o- -L https://yarnpkg.com/install.sh | bash
- export PATH="$HOME/.yarn/bin:$PATH"
cache:
yarn: true
directories:
- ".cache"
2017-11-23 09:06:10 +00:00
- ".eslintcache"
- "node_modules"
script:
- yarn run prettier -- --list-different
- yarn run lint
- yarn run jest --maxWorkers=4
2017-11-23 09:46:33 +00:00
after_success:
- yarn run codecov
deploy:
provider: script
script: yarn run semantic-release
skip_cleanup: true
on:
branch: master