Skip to content

Commit

Permalink
Merge pull request #2 from 9renpoto/fix/circleci
Browse files Browse the repository at this point in the history
feat(.circleci) use CircleCI v2
  • Loading branch information
nathancahill committed Apr 19, 2019
2 parents 3a455b5 + 75447a5 commit df058ca
Show file tree
Hide file tree
Showing 3 changed files with 3,286 additions and 3 deletions.
18 changes: 18 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
version: 2
jobs:
build:
docker:
- image: circleci/node:7.10
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 test
3 changes: 0 additions & 3 deletions circle.yml

This file was deleted.

Loading

0 comments on commit df058ca

Please sign in to comment.