renovate/circle.yml

23 lines
417 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:
- ~/.cache/yarn
- ~/.yarn
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)