Skip to content

Commit

Permalink
feat: add circleci config
Browse files Browse the repository at this point in the history
  • Loading branch information
Buzzertech committed Jun 22, 2019
1 parent 2bf4bb8 commit 0520dd3
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:
test:
docker:
- image: circleci/node:10.15
working_directory: ~/repo
steps:
- checkout
- restore_cache:
keys:
- yarn-packages-{{ checksum "yarn.lock" }}
- run:
name: Install dependencies
command: yarn install --frozen-lockfile
- save_cache:
name: Save Yarn Package Cache
key: yarn-packages-{{ checksum "yarn.lock" }}
paths:
- ~/.cache/yarn
- run: yarn test
workflows:
version: 2
test:
jobs:
- test

0 comments on commit 0520dd3

Please sign in to comment.