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'm making use of the new working_directory param for my circleci job (thanks to #144 ) and its working with my front-end folder in a subdirectory of my repo.
But - I am getting this error at Circle when it tries to lookup the cache or create the cache:
error computing cache key: template: cacheKey:1:34: executing "cacheKey" at <checksum "package.js...>: error calling checksum: open /root/project/package.json: no such file or directory
So, I'm guessing maybe the caching isn't looking for the package.json in the same place when using the orb? My job is pretty straightforward, and like I said, it runs - it just doesn't get the benefit of the container caching:
- cypress/run:
requires:
- build_web
record: true
group: 'circle_test_only'
start: 'npm run serve'
working_directory: web
The text was updated successfully, but these errors were encountered:
I'm making use of the new working_directory param for my circleci job (thanks to #144 ) and its working with my front-end folder in a subdirectory of my repo.
But - I am getting this error at Circle when it tries to lookup the cache or create the cache:
error computing cache key: template: cacheKey:1:34: executing "cacheKey" at <checksum "package.js...>: error calling checksum: open /root/project/package.json: no such file or directory
So, I'm guessing maybe the caching isn't looking for the package.json in the same place when using the orb? My job is pretty straightforward, and like I said, it runs - it just doesn't get the benefit of the container caching:
The text was updated successfully, but these errors were encountered: