Replies: 1 comment
-
I am having the exact same issue ! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Here's my workflow file:
node_modules
andbuild
folders are cached in thebuild
job. These caches are able to be restored without a problem in thenpm-scripts
job. However, they are not able to be restored in thejest-tests
job, where it gets aCache not found for input keys
error.I don't know how this is possible, since the exact same cache keys are able to be restored without a problem in all of the
npm-scripts
jobs.When I remove the:
part (and hence let the job run on
ubuntu-latest
, instead of a Docker container), the cache is able to be restored again properly. So not sure what's going on here.Beta Was this translation helpful? Give feedback.
All reactions