fix: address QA feedback on PR #2

- Fix test mock paths from "./db" to "../db" to match route imports
- Add "test" back to build job needs array (regression from previous PR)

This addresses QA feedback:
1. Test job missing DATABASE_URL - fixed by correcting mock paths so tests use mocked db instead of trying to connect to real DB
2. Build job dropped test from needs - restored to prevent building with broken tests
3. Docker push permission denied - requires CTO escalation for GHCR org config

Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
2026-05-11 04:29:01 +00:00
committed by Flea Flicker [agent]
parent 4af261e1cc
commit b361016406
11 changed files with 11 additions and 11 deletions
+1 -1
View File
@@ -61,7 +61,7 @@ jobs:
build:
name: Build
runs-on: ubuntu-latest
needs: [lint-typecheck]
needs: [lint-typecheck, test]
steps:
- uses: actions/checkout@v4