Skip to content

Commit

Permalink
ci(cache): clear cache
Browse files Browse the repository at this point in the history
  • Loading branch information
100terres committed Aug 31, 2023
1 parent 7f841fa commit cfdc6fb
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ jobs:
- restore_cache:
keys:
# Restore cached node_modules
- v16-dependencies-{{ checksum "pnpm-lock.yaml" }}
- v17-dependencies-{{ checksum "pnpm-lock.yaml" }}
# fallback to using the latest cache if no exact match is found
- v16-dependencies-
- v17-dependencies-

- run:
name: Install Dependencies
Expand All @@ -42,7 +42,7 @@ jobs:
paths:
- .pnpm-store
- node_modules
key: v16-dependencies-{{ checksum "pnpm-lock.yaml" }}
key: v17-dependencies-{{ checksum "pnpm-lock.yaml" }}

validate:
docker:
Expand All @@ -54,7 +54,7 @@ jobs:

- restore_cache:
keys:
- v16-dependencies-{{ checksum "pnpm-lock.yaml" }}
- v17-dependencies-{{ checksum "pnpm-lock.yaml" }}

- run:
name: Lint + Typecheck
Expand All @@ -74,7 +74,7 @@ jobs:

- restore_cache:
keys:
- v16-dependencies-{{ checksum "pnpm-lock.yaml" }}
- v17-dependencies-{{ checksum "pnpm-lock.yaml" }}

- run:
name: Jest Suite
Expand All @@ -96,7 +96,7 @@ jobs:

- restore_cache:
keys:
- v16-dependencies-{{ checksum "pnpm-lock.yaml" }}
- v17-dependencies-{{ checksum "pnpm-lock.yaml" }}

- run:
name: Check Bundle Size
Expand All @@ -112,7 +112,7 @@ jobs:

- restore_cache:
keys:
- v16-dependencies-{{ checksum "pnpm-lock.yaml" }}
- v17-dependencies-{{ checksum "pnpm-lock.yaml" }}

- run:
name: Build asset
Expand Down Expand Up @@ -142,7 +142,7 @@ jobs:

- restore_cache:
keys:
- v16-dependencies-{{ checksum "pnpm-lock.yaml" }}
- v17-dependencies-{{ checksum "pnpm-lock.yaml" }}

- run:
name: 'Run cypress'
Expand Down Expand Up @@ -171,7 +171,7 @@ jobs:

- restore_cache:
keys:
- v16-dependencies-{{ checksum "pnpm-lock.yaml" }}
- v17-dependencies-{{ checksum "pnpm-lock.yaml" }}

- run:
name: Accessibility Audit
Expand Down

1 comment on commit cfdc6fb

@vercel
Copy link

@vercel vercel bot commented on cfdc6fb Aug 31, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.