6cd3f2db2b
## Summary - Replaces the `spawn-twenty-app-dev-test` Docker action with native GitHub Actions services (`postgres:18` + `redis`) and direct server startup (`npx nx start:ci twenty-server`) - Aligns with the pattern already used by `ci-sdk.yaml` for e2e tests - Removes dependency on the `twenty-app-dev` Docker image for CI Updated workflows: - `ci-example-app-postcard` - `ci-example-app-hello-world` - `ci-create-app-e2e-minimal` - `ci-create-app-e2e-hello-world` - `ci-create-app-e2e-postcard` Server setup pattern: 1. Postgres 18 + Redis as job services 2. `CREATE DATABASE "test"` via psql 3. `npx nx run twenty-server:database:reset` (migrations + seed) 4. `nohup npx nx start:ci twenty-server &` 5. `npx wait-on http://localhost:3000/healthz` Made with [Cursor](https://cursor.com)