Trying out CircleCI

This commit is contained in:
Jeff Avallone 2018-02-10 20:25:00 -05:00
parent c38a9ddb3b
commit 9f5bb8faf1
2 changed files with 26 additions and 4 deletions

26
.circleci/config.yml Normal file
View File

@ -0,0 +1,26 @@
version: 2
jobs:
build:
docker:
- image: circleci/node:7.10
working_directory: ~/repo
steps:
- checkout
# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "package.json" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- run: yarn install
- save_cache:
paths:
- node_modules
key: v1-dependencies-{{ checksum "package.json" }}
- run: yarn test

View File

@ -1,4 +0,0 @@
language: node_js
node_js:
- "node"
cache: yarn