Workflow guide
Choose the right check
Use the smallest check that answers the risk you care about.
UI checks
Use a real browser journey when the risk is what a user can see, click, enter, or complete.
API checks
Use endpoint checks when the risk is request validation, status codes, response data, auth, or error behavior.
Code review
Use connected repository review when the risk is inside a pull request or merge request diff.
Smoke versus regression
- Smoke: short, critical path that should run often.
- Regression: a known behavior that must remain correct after change.
- End to end: a complete workflow across multiple product boundaries.