Files
genesis-2/.gitea/workflows/ci.yaml
T
Workflow config file is invalid. Please check your config file: model.ReadWorkflow: yaml: unmarshal errors: line 1: cannot unmarshal !!seq into model.Workflow
alexrg afd10eaaf7
Deploy Function / deploy (push) Successful in 53s
Deploy Migrations to Production / deploy (push) Successful in 12s
Actualizar .gitea/workflows/ci.yaml
2026-02-16 16:36:58 +00:00

31 lines
753 B
YAML

- uses: actions/checkout@v4
- uses: supabase/setup-cli@v1
with:
version: 1.119.1
- name: Add swap (avoid exit 137)
run: |
sudo fallocate -l 4G /swapfile
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
free -h
- name: Docker prune
run: |
docker system prune -af || true
docker volume prune -f || true
- name: Start Supabase local development setup
run: supabase db start --debug
- name: Verify generated types are checked in
run: |
supabase gen types typescript --local > database-types.ts
if ! git diff --ignore-space-at-eol --exit-code --quiet database-types.ts; then
echo "Detected uncommitted changes after build. See status below:"
git diff
exit 1
fi