renovate/circle.yml
2017-06-30 16:02:40 +02:00

29 lines
519 B
YAML

machine:
environment:
PATH: "${PATH}:${HOME}/${CIRCLE_PROJECT_REPONAME}/node_modules/.bin"
YARN_PATH: "$HOME/.yarn"
node:
version: 6.9
dependencies:
pre:
- bash bin/install-yarn.sh
- yarn --version
override:
- yarn install --frozen-lockfile
cache_directories:
- ~/.cache
- ~/.yarn
- .cache
test:
override:
- npm test
post:
- bash <(curl -s https://codecov.io/bash)
deployment:
npm:
branch: master
commands:
- npm run semantic-release || true