Skip to content

Commit

Permalink
Switch to CircleCI 2.0 configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
sstephenson committed Aug 30, 2018
1 parent f4d9df1 commit 6f4b70c
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 21 deletions.
27 changes: 27 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
version: 2
jobs:
test:
docker:
- image: circleci/node:latest
steps:
- checkout
- run:
name: Install Yarn
command: curl -o- -L https://yarnpkg.com/install.sh | bash && yarn --version
- restore_cache:
key: dependency-cache-{{ checksum "yarn.lock" }}
- run:
name: Install npm dependencies
command: yarn
- run:
name: Run test suite
command: yarn test
- save_cache:
key: dependency-cache-{{ checksum "yarn.lock" }}
paths:
- node_modules
workflows:
version: 2
test:
jobs:
- test
21 changes: 0 additions & 21 deletions circle.yml

This file was deleted.

0 comments on commit 6f4b70c

Please sign in to comment.