Skip to content

Instantly share code, notes, and snippets.

@alvincrespo
Created October 11, 2017 01:32
Show Gist options
  • Save alvincrespo/efbc4e3223e1d30d574bae82189a3cdf to your computer and use it in GitHub Desktop.
Save alvincrespo/efbc4e3223e1d30d574bae82189a3cdf to your computer and use it in GitHub Desktop.
: 2
jobs:
build:
docker:
- image: circleci/node:7.10.1-browsers
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment