Skip to content

Commit

Permalink
Setup Circle CI
Browse files Browse the repository at this point in the history
  • Loading branch information
wadackel committed Jan 13, 2018
1 parent 5e49d90 commit df9f865
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
version: 2
jobs:
build:
docker:
- image: regviz/node-xcb

working_directory: ~/repo

steps:
- checkout
- restore_cache:
keys:
- v1-dependencies-{{ checksum "package.json" }}-{{ checksum "yarn.lock" }}
- v1-dependencies-

- run: yarn

- save_cache:
paths:
- node_modules
key: v1-dependencies-{{ checksum "package.json" }}-{{ checksum "yarn.lock" }}

- run: yarn screenshot
- run: yarn regression

0 comments on commit df9f865

Please sign in to comment.