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
- In your `Dockerfile`, remember to copy over the patch files *before* running
68
+
`[npm|yarn] install`
66
69
- If you cache `node_modules` rather than running `yarn install` every time,
67
70
make sure that the `patches` dir is included in your cache key somehow.
68
71
Otherwise if you update a patch then the change may not be reflected on
69
72
subsequent CI runs.
70
73
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" }}`
74
+
E.g., for CircleCI: before loading/saving your cache run `cat patches/* | md5 > patches.hash`
75
+
and then update your hash key to include a checksum of that file,
0 commit comments