ci(remix): Do not run playwright install again for remix#20824
Conversation
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 2 potential issues.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit 74bbb09. Configure here.
| "test": "yarn test:unit", | ||
| "test:integration": "run-s test:integration:clean test:integration:prepare test:integration:client test:integration:server", | ||
| "test:integration:ci": "run-s test:integration:clean test:integration:prepare test:integration:client:ci test:integration:server", | ||
| "test:integration:ci": "run-s test:integration:clean test:integration:prepare test:integration:client test:integration:server", |
There was a problem hiding this comment.
Local integration tests break: playwright install step orphaned
Medium Severity
The test:integration:prepare:playwright script is defined but never called from any pipeline. The test:integration script (used for local runs) no longer installs Playwright deps since that step was removed from test:integration:client. It likely needs to include test:integration:prepare:playwright in its run-s chain so local yarn test:integration still works.
Additional Locations (1)
Reviewed by Cursor Bugbot for commit 74bbb09. Configure here.
There was a problem hiding this comment.
this is fine, we can run this manually if we need to run this locally
size-limit report 📦
|


We already install playwright in remix integration tests on CI beforehand, so no need to run this again in the test command.