|
|
|
|
|
by giancarlostoro
183 days ago
|
|
> AFAICT, there’s no service that lets me: give a prompt, write the code, spin up all this infra, run Playwright, handle database migrations, and let me manually poke at the system. We approximate this with GitHub Actions, but that doesn’t help with manual verification or DB work. What you want is CI/CD that deploys to rotating stating or dev environments per PR before code is merged. If deployment fails you do not allow the PR to be approved. Did this for a primarily React project we had before but you can do all your projects, you just need temporary environments that rotate per PR. |
|