renovate/circle.yml

31 lines
588 B
YAML
Raw 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:
- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 0.27.5
2017-02-10 04:45:16 -07:00
- yarn --version
- npm i -g npm@5
2017-02-10 04:45:16 -07:00
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