ci: core CI workflow — parallel backend + frontend, fail-fast (R1) - #62
Merged
Conversation
Akash29g
approved these changes
Jul 14, 2026
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.
Round 1 — Foundations (CI/CD)
Adds the core CI pipeline both R1–R4 build on. Backend and frontend jobs run
in parallel and fail-fast, so every PR now gets a green/red signal on both stacks.
What's in here
.github/workflows/ci.yml— two parallel jobs:🔧 backend (.NET 10)
restore→build(Release) →testPerformance.Testsis excluded from the blocking gate (Round 0 decision — perf is not a day-one PR gate)bash -eo pipefail→ first failing project stops the job (fail-fast)🔧 frontend (Angular 22)
npm ci→npm run build→npx ng test --watch=false(Vitest, headless jsdom)Design notes
needs:between the two jobs → they run concurrently.concurrency: cancel-in-progresscancels superseded runs on the same ref.pull_request+ pushes tomain.permissions: contents: read.Verification
dotnet build/test -c Release)npm run build) +ng test --watch=falsepasses (~134 tests)Post-merge (R1 boundary)
After this + Akash's transport-hardening PR merge, enable BASIC branch protection on
main:require green CI (
backend,frontend) + 1 review. Tighten (CODEOWNERS, all branches) in R5.Refs: DocAnalytics Security & CI/CD Round Split (Revised) — Round 1