diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 2c24f53..286de96 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -18,11 +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 if ! git diff --ignore-space-at-eol --exit-code --quiet supabase/functions/_shared/database.types.ts; then - echo "Detected uncommitted changes after build. See status below:" - git diff - exit 1 + echo "Detected uncommitted changes after build. See diff below:" + exit 1 fi