Last active
February 27, 2019 19:00
-
-
Save stevehanson/ff70ca54fc2aadfe67f3e3e730161350 to your computer and use it in GitHub Desktop.
Circle CI config for Create React App
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: 2 | |
jobs: | |
build: | |
docker: | |
- image: circleci/node:10.11.0 | |
steps: | |
- checkout | |
- restore_cache: | |
key: dependency-cache-{{ checksum "yarn.lock" }} | |
- run: | |
name: Setup Dependencies | |
command: yarn install | |
- save_cache: | |
key: dependency-cache-{{ checksum "yarn.lock" }} | |
paths: | |
- ./node_modules | |
- run: | |
name: Run Test | |
command: yarn test |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
super helpful, thank you! 🌸