From 6e2d513cc7940bded388c06290e9fcf5215442c7 Mon Sep 17 00:00:00 2001 From: Claude Fable 5 Date: Sun, 5 Jul 2026 05:52:49 +0200 Subject: [PATCH] Apply migrations before seeding in the auth-e2e job The fixtures seed ran against an empty database; migrate deploy now precedes it (the api start re-checks idempotently). Part of #20 Co-Authored-By: Claude Fable 5 --- .gitea/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 8fbbe41..b8e53db 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -95,6 +95,9 @@ jobs: - name: Build packages run: pnpm build + - name: Apply migrations + run: pnpm --filter @dorfteich/api exec prisma migrate deploy + - name: Seed fixtures run: pnpm --filter @dorfteich/api db:seed