mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 01:47:00 +01:00
add new yarn3 paths to circleci cache (#16873)
This commit is contained in:
parent
1a842aabb6
commit
ee321971e7
@ -208,7 +208,16 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- checkout
|
- checkout
|
||||||
- restore_cache:
|
- restore_cache:
|
||||||
key: dependency-cache-v1-{{ checksum "yarn.lock" }}
|
keys:
|
||||||
|
# First try to get the specific cache for the checksum of the yarn.lock file.
|
||||||
|
# This cache key lookup will fail if the lock file is modified and a cache
|
||||||
|
# has not yet been persisted for the new checksum.
|
||||||
|
- dependency-cache-v1-{{ checksum "yarn.lock" }}
|
||||||
|
# To prevent having to do a full install of every node_module when
|
||||||
|
# dependencies change, restore from the last known cache of any
|
||||||
|
# branch/checksum, the install step will remove cached items that are no longer
|
||||||
|
# required and add the new dependencies, and the cache will be persisted.
|
||||||
|
- dependency-cache-v1-
|
||||||
- gh/install
|
- gh/install
|
||||||
- run:
|
- run:
|
||||||
name: Set IS_DRAFT environment variable
|
name: Set IS_DRAFT environment variable
|
||||||
@ -237,7 +246,7 @@ jobs:
|
|||||||
- save_cache:
|
- save_cache:
|
||||||
key: dependency-cache-v1-{{ checksum "yarn.lock" }}
|
key: dependency-cache-v1-{{ checksum "yarn.lock" }}
|
||||||
paths:
|
paths:
|
||||||
- node_modules/
|
- .yarn/cache
|
||||||
- persist_to_workspace:
|
- persist_to_workspace:
|
||||||
root: .
|
root: .
|
||||||
paths:
|
paths:
|
||||||
|
Loading…
Reference in New Issue
Block a user