mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-11 14:36:25 +00:00
41 lines
611 B
YAML
41 lines
611 B
YAML
notifications:
|
|
email: false
|
|
|
|
language: node_js
|
|
|
|
node_js:
|
|
- "8.11.1"
|
|
|
|
sudo: false
|
|
|
|
branches:
|
|
only:
|
|
- master
|
|
|
|
if: tag IS blank
|
|
|
|
before_install:
|
|
- curl -o- -L https://yarnpkg.com/install.sh | bash
|
|
- export PATH="$HOME/.yarn/bin:$PATH"
|
|
|
|
cache:
|
|
yarn: true
|
|
directories:
|
|
- ".cache"
|
|
- ".eslintcache"
|
|
- "node_modules"
|
|
|
|
script:
|
|
- yarn prettier --list-different
|
|
- yarn lint
|
|
- yarn jest --maxWorkers=4
|
|
|
|
after_success:
|
|
- yarn codecov
|
|
|
|
deploy:
|
|
provider: script
|
|
script: curl -X POST -d '{}' $NETLIFY_DEPLOY_WEBHOOK && yarn semantic-release
|
|
skip_cleanup: true
|
|
on:
|
|
branch: master
|