mirror of https://github.com/renovatebot/renovate
34 lines
643 B
YAML
34 lines
643 B
YAML
machine:
|
|
environment:
|
|
PATH: "${PATH}:${HOME}/${CIRCLE_PROJECT_REPONAME}/node_modules/.bin"
|
|
YARN_PATH: "$HOME/.yarn"
|
|
node:
|
|
version: 8
|
|
|
|
dependencies:
|
|
pre:
|
|
- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.2.1
|
|
- yarn --version
|
|
override:
|
|
- yarn install --frozen-lockfile
|
|
cache_directories:
|
|
- ~/.cache
|
|
- ~/.yarn
|
|
- .cache
|
|
|
|
test:
|
|
override:
|
|
- yarn test
|
|
post:
|
|
- bash <(curl -s https://codecov.io/bash)
|
|
|
|
deployment:
|
|
10x:
|
|
branch: master
|
|
commands:
|
|
- yarn run semantic-release || true
|
|
9x:
|
|
branch: 9x
|
|
commands:
|
|
- yarn run semantic-release || true
|