Skip to content

Commit

Permalink
Merge pull request #84 from CodingZeal/chores/upgrade-to-circleci2
Browse files Browse the repository at this point in the history
Upgrade CircleCI configuration to version 2
  • Loading branch information
frank-west-iii authored Dec 8, 2017
2 parents 804d0c7 + 58b4294 commit 4370952
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 14 deletions.
22 changes: 22 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
version: 2
jobs:
build:
docker:
- image: circleci/node:6.11.1

steps:
- checkout
- restore_cache:
keys:
- v1-dependency-cache-{{ checksum "yarn.lock" }}
- v1-dependency-cache

- run: yarn install

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

- run: yarn test
14 changes: 0 additions & 14 deletions circle.yml

This file was deleted.

0 comments on commit 4370952

Please sign in to comment.