Skip to content

Commit

Permalink
chore: migrate to CircleCI 2, add Node.js 10 (#140)
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielRuf authored and tmcw committed May 9, 2018
1 parent bbe6534 commit 8799fbf
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 3 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:
build:
docker:
- image: circleci/node:8
- image: circleci/node: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.

0 comments on commit 8799fbf

Please sign in to comment.