Skip to content

Commit

Permalink
Add CircleCI 2 config
Browse files Browse the repository at this point in the history
  • Loading branch information
nhunzaker committed May 29, 2018
1 parent 0dc0291 commit 9bbe93c
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
version: 2
jobs:
build:
docker:
- image: circleci/node:8-browsers
working_directory: ~/repo
steps:
- checkout
- restore_cache:
keys:
- yarn-cache-{{ checksum "yarn.lock" }}
- save_cache:
paths:
- node_modules
key: yarn-cache-{{ checksum "yarn.lock" }}
- run: yarn build
- run: yarn test

0 comments on commit 9bbe93c

Please sign in to comment.