Skip to content

Commit

Permalink
Add cache save and restore to circle ci
Browse files Browse the repository at this point in the history
  • Loading branch information
joebochill committed Oct 1, 2021
1 parent c7d5152 commit dde1ff8
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,18 @@ jobs:
- image: circleci/node:12.9.1-browsers
steps:
- checkout
- restore_cache:
keys:
- v1-dependencies-{{ checksum "yarn.lock" }}
- run:
name: Install Dependencies
command: |
yarn install --frozen-lockfile
- save_cache:
name: Save Cache
paths:
- node_modules
key: v1-dependencies-{{ checksum "yarn.lock" }}
- run:
name: Prettier Check
command: yarn prettier:check
Expand Down

0 comments on commit dde1ff8

Please sign in to comment.