Skip to content

Commit

Permalink
chore: add circleci config
Browse files Browse the repository at this point in the history
  • Loading branch information
rigor789 committed Sep 10, 2019
1 parent f1ecc47 commit 84d1906
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
version: 2
jobs:
build:
docker:
- image: circleci/node:10

working_directory: ~/repo

steps:
- checkout

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

- run: yarn install

- save_cache:
paths:
- node_modules
- ~/.cache/yarn
key: v1-dependencies-{{ checksum "yarn.lock" }}

#- run: yarn test --ci --runInBand

0 comments on commit 84d1906

Please sign in to comment.