Conversation
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as spam.
This comment was marked as spam.
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 463744828b
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| node-version: latest | ||
|
|
||
| - uses: pnpm/action-setup@v4 | ||
| - uses: pnpm/action-setup@v6 |
There was a problem hiding this comment.
Specify pnpm version for setup action
pnpm/action-setup@v6 only allows omitting with.version when package.json has a top-level packageManager field, but this commit also removes that field. In this workflow, the setup step now has no version source, so CI can fail before install/publish (or become non-deterministic if defaults change). Add an explicit with: version: ... here (or restore packageManager) to keep deploy runs reproducible.
Useful? React with 👍 / 👎.
Summary by CodeRabbit
Refactor