Skip to content

Commit

Permalink
ci: configure circleci
Browse files Browse the repository at this point in the history
  • Loading branch information
RobinCK committed Jan 7, 2019
1 parent 21dd827 commit e3df8fc
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
version: 2
jobs:
build:
docker:
- image: circleci/node:8
working_directory: ~/repo

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

- run: yarn install

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

- run: yarn build
- run: yarn test

0 comments on commit e3df8fc

Please sign in to comment.