We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Description: Currently, saving the cache is executed only when the job is successful:
setup-node/action.yml
Lines 38 to 39 in 39370e3
In my opinion, the job can fail for many reasons, and saving the package to the cache should be independent.
Justification: Slowed-down job execution makes me prefer using a manual cache:
- name: Always Save pnpm cache if: always() && steps.cache-pnpm.outputs.cache-hit != 'true' uses: actions/cache/save@v4 with: path: | ${{ env.STORE_PATH }} key: ${{ steps.cache-pnpm.outputs.cache-primary-key }}
instead of cache input in action.
cache
Are you willing to submit a PR?
The text was updated successfully, but these errors were encountered:
Hello @morriq 👋, Thank you for this feature request. We will investigate it and get back to you as soon as we have some feedback.
Sorry, something went wrong.
No branches or pull requests
Description:
Currently, saving the cache is executed only when the job is successful:
setup-node/action.yml
Lines 38 to 39 in 39370e3
In my opinion, the job can fail for many reasons, and saving the package to the cache should be independent.
Justification:
Slowed-down job execution makes me prefer using a manual cache:
instead of
cache
input in action.Are you willing to submit a PR?
The text was updated successfully, but these errors were encountered: