Skip to content

Commit

Permalink
Add circle configuration
Browse files Browse the repository at this point in the history
- Adds .nvmrc
  • Loading branch information
Christian Maniewski committed Feb 15, 2018
1 parent 89d5f3b commit 4c55159
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .circle/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
version: 2
jobs:
build:
docker:
- image: circleci/node:9.5.0

steps:
- checkout

- restore_cache:
keys:
- v1-dependencies-{{ checksum "yarn.lock" }}
- v1-dependencies-

- run: |
yarn global add greenkeeper-lockfile@1
yarn install
- save_cache:
paths:
- node_modules
key: v1-dependencies-{{ checksum "yarn.lock" }}

- run: |
$HOME/.config/yarn/global/node_modules/.bin/greenkeeper-lockfile-update
yarn test
$HOME/.config/yarn/global/node_modules/.bin/greenkeeper-lockfile-upload
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
9.5.0

0 comments on commit 4c55159

Please sign in to comment.