renovate/circle.yml
Rhys Arkins f5a92e8061 Fix git dirty test (#248)
* Update test names

* Update yarn.lock
2017-06-04 06:57:41 +02:00

22 lines
434 B
YAML

machine:
environment:
PATH: "${PATH}:${HOME}/${CIRCLE_PROJECT_REPONAME}/node_modules/.bin"
node:
version: 6.9
dependencies:
pre:
- curl -o- -L https://yarnpkg.com/install.sh | bash
- yarn --version
override:
- yarn install --frozen-lockfile
cache_directories:
- ~/.cache/yarn
test:
pre:
- yarn run update-docs
override:
- yarn test
post:
- bash <(curl -s https://codecov.io/bash)