mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-11 06:26:26 +00:00
22 lines
417 B
YAML
22 lines
417 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
|
|
- ~/.yarn
|
|
|
|
test:
|
|
override:
|
|
- npm test
|
|
post:
|
|
- bash <(curl -s https://codecov.io/bash)
|