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
I noticed something strange. A lot of times, when .github/workflows/pr-test.yml runs it's unable to benefit from caching the whole ./node_modules directory between caches. That's strange. I would expect the cache to be constantly busted when the yarn.lock changes on all those Dependabot upgrades of @mdn/yari. But that was not the case.
You often see this:
By hopeful intuition and skimming a lot of the threads in this issue: actions/toolkit#658
It seems that it's failing because the cache key is not unique between workflows. E.g. pr-test.yml and pr-check_redirects.yml share the same cache key.
The text was updated successfully, but these errors were encountered:
I noticed something strange. A lot of times, when
.github/workflows/pr-test.yml
runs it's unable to benefit from caching the whole./node_modules
directory between caches. That's strange. I would expect the cache to be constantly busted when theyarn.lock
changes on all those Dependabot upgrades of@mdn/yari
. But that was not the case.You often see this:
By hopeful intuition and skimming a lot of the threads in this issue: actions/toolkit#658
It seems that it's failing because the cache key is not unique between workflows. E.g.
pr-test.yml
andpr-check_redirects.yml
share the same cache key.The text was updated successfully, but these errors were encountered: