Añadir .gitea/workflows/ci.yaml
Deploy Function / deploy (push) Successful in 28s
Deploy Migrations to Production / deploy (push) Successful in 14s

This commit is contained in:
2026-03-10 01:36:11 +00:00
parent 5958ec15d2
commit 1b715baff6
+28
View File
@@ -0,0 +1,28 @@
name: CI
on:
pull_request:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: supabase/setup-cli@v1
with:
version: latest
- name: Start Supabase local development setup
run: supabase db start
- name: Verify generated types are checked in
run: |
supabase gen types typescript --local > types.gen.ts
if ! git diff --ignore-space-at-eol --exit-code --quiet types.gen.ts; then
echo "Detected uncommitted changes after build. See status below:"
git diff
exit 1
fi