Skip to content

Commit

Permalink
chore: tweak circleci config
Browse files Browse the repository at this point in the history
  • Loading branch information
asvae committed Jan 4, 2019
1 parent c092817 commit cfa82d8
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,18 @@ jobs:
parallelism: 1
working_directory: ~/repo
steps:
- checkout
- restore_cache:
name: Restore Yarn Package Cache
keys:
- yarn-packages-{{ checksum "yarn.lock" }}
- run: yarn install
- run:
name: Install Dependencies
command: yarn install --frozen-lockfile --cache-folder ~/.cache/yarn
- save_cache:
paths:
- node_modules
name: Save Yarn Package Cache
key: yarn-packages-{{ checksum "yarn.lock" }}
paths:
- ~/.cache/yarn
- run: yarn build
- run:
name: Deploy to hosting
Expand Down

0 comments on commit cfa82d8

Please sign in to comment.