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
👋 I have an issue using this action with the following github action setup
runs: using: composite steps: - name: Install pnpm uses: pnpm/action-setup@4 # v4 - name: Install Node & NPM uses: actions/setup-node@4 # v4 with: node-version-file: '.nvmrc' cache: 'pnpm' - name: Install dependencies shell: bash run: pnpm install --frozen-lockfile
The issue is the cache is restored but it isn't fully re-used.
When the installation happening, I see only about half of the packages. are reused:
Progress: resolved 2359, reused 1037, downloaded 141, added 1171
Locally, all the packages are reusued.
What could be causing this? how can I debug it?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
👋 I have an issue using this action with the following github action setup
The issue is the cache is restored but it isn't fully re-used.
When the installation happening, I see only about half of the packages. are reused:
Progress: resolved 2359, reused 1037, downloaded 141, added 1171
Locally, all the packages are reusued.
What could be causing this? how can I debug it?
The text was updated successfully, but these errors were encountered: