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
When pnpm/action-setup installs pnpm, the logs show:
pnpm/action-setup
Content-addressable store is at: /home/runner/.pnpm-store/v3
But when pnpm installs the dependencies, it logs another path:
Content-addressable store is at: /home/runner/setup-pnpm/node_modules/.bin/store/v3
The second one is correct. Is it because PNPM_HOME is set after the installation of pnpm instead of before?
PNPM_HOME
I'm not passing anything special to the actions:
- name: Install pnpm ⚙️ uses: pnpm/action-setup@v2 with: version: 7.x - name: Install dependencies ⚙️ run: pnpm install --frozen-lockfile
The text was updated successfully, but these errors were encountered:
It is hard to fix. The whole action should be rewritten.
Sorry, something went wrong.
@zkochan Whats the status on this?
No branches or pull requests
When
pnpm/action-setup
installs pnpm, the logs show:But when pnpm installs the dependencies, it logs another path:
The second one is correct. Is it because
PNPM_HOME
is set after the installation of pnpm instead of before?I'm not passing anything special to the actions:
The text was updated successfully, but these errors were encountered: