34 / 139 · 13 Browser Automation with Playwright · Quick Start Preparation: Turn Discovery into a Scaffolding-Ready Package← prev⊞ allnext →☰ Read as one page
2.14Step 10 — Decide the initial CI expectations
The first scaffold should be CI-aware even if CI is still minimal.
A good default is to prepare:
.github/workflows/ci.yml
.github/workflows/smoke.yml
.github/workflows/docs-check.yml
Expectations
ci.yml
- install dependencies
- lint
- typecheck
- run smoke UI and API tests
- upload Playwright report and failure artifacts when needed
smoke.yml
- manual or scheduled smoke run
docs-check.yml
- verify required docs exist
- verify key links or file presence where practical
These do not need to be perfect from day one, but the structure should be in place.