diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 9e41e93..286de96 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -18,16 +18,13 @@ jobs: - name: Start Supabase local development setup run: supabase db start + - name: List directory contents for debugging + run: ls -R + - name: Verify generated types are checked in run: | supabase gen types typescript --local > supabase/functions/_shared/database.types.ts - - echo "----- Generated types preview -----" - head -n 40 supabase/functions/_shared/database.types.ts - echo "-----------------------------------" - if ! git diff --ignore-space-at-eol --exit-code --quiet supabase/functions/_shared/database.types.ts; then echo "Detected uncommitted changes after build. See diff below:" - git diff supabase/functions/_shared/database.types.ts exit 1 fi