Skip to content

improve waiting for confirmation ui #32

improve waiting for confirmation ui

improve waiting for confirmation ui #32

name: Supabase Type Check
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: supabase/setup-cli@v1
with:
version: 1.162.4
- name: Start Supabase local development setup
run: supabase start
- name: Verify generated types are checked in
run: |
supabase gen types typescript --local > supabase/types.gen.ts
if ! git diff --ignore-space-at-eol --exit-code --quiet supabase/types.gen.ts; then
echo "Detected uncommitted changes after build. See status below:"
git diff
exit 1
fi