renovate/circle.yml

30 lines
519 B
YAML
Raw Permalink Normal View History

machine:
2017-02-10 04:45:16 -07:00
environment:
PATH: "${PATH}:${HOME}/${CIRCLE_PROJECT_REPONAME}/node_modules/.bin"
YARN_PATH: "$HOME/.yarn"
node:
version: 6.9
2017-01-15 13:51:35 -07:00
2017-02-10 04:45:16 -07:00
dependencies:
pre:
- bash bin/install-yarn.sh
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:
- npm test
2017-01-15 13:51:35 -07:00
post:
- bash <(curl -s https://codecov.io/bash)
deployment:
npm:
branch: master
commands:
- npm run semantic-release || true