2017-11-23 12:11:45 +00:00
|
|
|
notifications:
|
|
|
|
email: false
|
2017-11-23 09:06:10 +00:00
|
|
|
|
|
|
|
language: node_js
|
|
|
|
|
|
|
|
node_js:
|
2018-03-30 19:23:51 +00:00
|
|
|
- "8.11.1"
|
2017-11-23 09:06:10 +00:00
|
|
|
|
|
|
|
sudo: false
|
|
|
|
|
2018-01-26 09:15:13 +00:00
|
|
|
branches:
|
|
|
|
only:
|
|
|
|
- master
|
|
|
|
|
2017-11-23 12:00:06 +00:00
|
|
|
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:
|
2017-11-23 09:37:04 +00:00
|
|
|
- ".cache"
|
2017-11-23 09:06:10 +00:00
|
|
|
- ".eslintcache"
|
|
|
|
- "node_modules"
|
|
|
|
|
|
|
|
script:
|
2018-03-30 19:23:51 +00:00
|
|
|
- yarn prettier --list-different
|
|
|
|
- yarn lint
|
|
|
|
- yarn jest --maxWorkers=4
|
2017-11-23 09:46:33 +00:00
|
|
|
|
|
|
|
after_success:
|
2018-03-30 19:23:51 +00:00
|
|
|
- yarn codecov
|
2017-11-23 11:41:47 +00:00
|
|
|
|
|
|
|
deploy:
|
|
|
|
provider: script
|
2018-03-30 19:23:51 +00:00
|
|
|
script: curl -X POST -d '{}' $NETLIFY_DEPLOY_WEBHOOK && yarn semantic-release
|
2017-11-23 11:41:47 +00:00
|
|
|
skip_cleanup: true
|
|
|
|
on:
|
|
|
|
branch: master
|