-
Notifications
You must be signed in to change notification settings - Fork 755
fix(ci): pin pnpm via pnpm/action-setup@v4 and harden playwright version detection #4091
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
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -54,11 +54,15 @@ jobs: | |
| ncurses-devel \ | ||
| gdbm-devel | ||
|
|
||
| - name: Install Node.js and pnpm | ||
| - name: Install Node.js | ||
| run: | | ||
| curl -fsSL https://rpm.nodesource.com/setup_22.x | bash - | ||
| dnf install -y nodejs | ||
| npm install -g pnpm | ||
|
|
||
| - name: Install pnpm | ||
| uses: pnpm/action-setup@v4 | ||
| with: | ||
| version: 10 | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain🌐 Web query:
💡 Result: No, pnpm/action-setup@v4 does not work in GitHub Actions container jobs where Node.js is not installed via actions/setup-node (or otherwise pre-installed in the container image). The action runs as a Node.js script and installs pnpm by spawning the Node.js process (process.execPath) to execute its bundled pnpm.cjs self-installer script, which performs Citations:
Use
🤖 Prompt for AI Agents
coderabbitai[bot] marked this conversation as resolved.
|
||
|
|
||
| - name: Install Poetry | ||
| run: | | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.