-
-
Notifications
You must be signed in to change notification settings - Fork 89
New issue
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
Support pnpm 8 #77
Comments
I was able to use 8 with lockfile v6 in actions. - uses: pnpm/[email protected]
with:
version: 8 on GHA Run pnpm/[email protected]
with:
version: 8
dest: ~/setup-pnpm
run_install: null |
I specified a pnpm version in
and it works fine with pnpm/action-setup. Note that [email protected] + Node.js 14 does not work fine but this is another issue: |
my workaround with using node 14.x and pnpm 8 : jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install pnpm
if: ${{ matrix.node-version != '14.x' }}
uses: pnpm/[email protected]
- name: Install pnpm (node 14)
if: ${{ matrix.node-version == '14.x' }}
run: npm install -g @pnpm/[email protected]
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
With the release of pnpm 8 it would be awesome to have support for it in actions.
The text was updated successfully, but these errors were encountered: