Merge branch 'main' of https://github.lci.ulsa.mx/AlexRG/genesis-2
Deploy Function / deploy (push) Successful in 32s
Deploy Migrations to Production / deploy (push) Successful in 11s

This commit is contained in:
2026-02-16 11:28:16 -06:00
+15 -2
View File
@@ -13,10 +13,23 @@ jobs:
- uses: supabase/setup-cli@v1 - uses: supabase/setup-cli@v1
with: with:
version: latest 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 - name: Start Supabase local development setup
run: supabase db start run: supabase db start --debug
- name: Verify generated types are checked in - name: Verify generated types are checked in
run: | run: |