Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: df469cf720
ℹ️ 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".
| - name: Run lint | ||
| run: npm run lint | ||
|
|
||
| - name: Test building frontend | ||
| run: npm run build | ||
| - name: Run unit tests | ||
| run: npm run test |
There was a problem hiding this comment.
Reinstate frontend build step in CI
The frontend workflow no longer executes npm run build, so CI no longer validates next build and the bundle script defined in frontend/package.json. Lint and unit tests do not exercise full Next.js production compilation, so a page-level compile/type error or bundling regression can now merge undetected and only fail at release time when the production build is run.
Useful? React with 👍 / 👎.
No description provided.