renovate/circle.yml

30 lines
566 B
YAML
Raw Normal View History

machine:
environment:
PATH: "${PATH}:${HOME}/${CIRCLE_PROJECT_REPONAME}/node_modules/.bin"
YARN_PATH: "$HOME/.yarn"
node:
version: 8
2017-01-15 13:51:35 -07:00
2017-02-10 04:45:16 -07:00
dependencies:
pre:
- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.0.2
2017-02-10 04:45:16 -07:00
- yarn --version
override:
- yarn install --frozen-lockfile
cache_directories:
2017-06-30 08:02:40 -06:00
- ~/.cache
- ~/.yarn
2017-06-30 08:02:40 -06:00
- .cache
2017-02-10 04:45:16 -07:00
2017-01-15 13:51:35 -07:00
test:
2017-02-10 04:45:16 -07:00
override:
2017-09-14 10:31:08 -06:00
- yarn test
2017-01-15 13:51:35 -07:00
post:
- bash <(curl -s https://codecov.io/bash)
deployment:
npm:
branch: master
commands:
2017-09-14 10:31:08 -06:00
- yarn run semantic-release || true