From 94ccf73176cc4d2ac6280715830cc118ddecaddf Mon Sep 17 00:00:00 2001 From: Alejandro Rosales Date: Wed, 18 Mar 2026 22:01:41 +0000 Subject: [PATCH] Eliminar .gitea/workflows/ci.yaml --- .gitea/workflows/ci.yaml | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 .gitea/workflows/ci.yaml diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml deleted file mode 100644 index 58cf700..0000000 --- a/.gitea/workflows/ci.yaml +++ /dev/null @@ -1,31 +0,0 @@ -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: Reset database to ensure a clean state - run: supabase db reset --no-seed - - - 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 diff below:" - git diff - exit 1 - fi