You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- If you cache `node_modules` rather than running `yarn install` every time,
67
+
make sure that the `patches` dir is included in your cache key somehow.
68
+
Otherwise if you update a patch then the change may not be reflected on
69
+
subsequent CI runs.
70
+
71
+
e.g. for cirlce ci before loading/saving you cache run `cat patches/* | md5 > patches.hash` and then update your hash key to include a checksum of that file, `{{ checksum "yarn.lock" }}-{{ checksum "patches.hash" }}`
0 commit comments