Merge branch 'main' into test/ci
CI / test (pull_request) Failing after 11s

This commit is contained in:
2026-03-10 14:27:48 +00:00
+5 -3
View File
@@ -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