CICD - Unit | Integration | E2E - #125
Merged
Merged
Conversation
Coverage Report for Unit
File Coverage
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Coverage Report for Integration
File Coverage
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
…due to mistakenly deleting .svelte components
…material type draft inconsistency, fix zip download
Martin092
approved these changes
Aug 30, 2026
Member
|
No way it got merged! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR modernizes our CI/CD and test setup, adds the full test suite, and lands the production Supabase stack definition. It is a large change, so the deep detail lives in the following articles:
CI/CD pipeline
.github/workflows/ci.ymlwith two jobs that run in parallel and both gate merges to main: unit and integration on the runner, and e2e against the real stagingscripts/cicd/(stop both apps, deploy Supabase, wipe the DB, deploy SvelteKit, run Playwrigcicd/docker-compose.ci.yml, database on tmpfs) with committed throwaway env files.Unit, integration, and e2e tests
scripts/run-integration.sh) that works both locally and in CI.scripts/run-e2e.sh) and the Playwright setup, plus the e2e suite undertests/e2e.docker/docker-compose.test.yml, compose projectcait-test) that reuses the dev ports and persists between runs for faster iteration.init-db.shout of the build.npm run buildis now just the vite build, and migrations and seeding run at server startup instead.Production VPS
docker/docker-compose.prod.yml, the self-hosted Supabase stack the production VPS now runs (S3 storage via minio, the pooler, SAML SSO, and the rest).Misc