Skip to content

chore(deps): bump react and @types/react #68

chore(deps): bump react and @types/react

chore(deps): bump react and @types/react #68

Workflow file for this run

name: CI
on:
pull_request:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
if: github.actor != 'dependabot[bot]'
steps:
- uses: actions/checkout@v3
- uses: supabase/setup-cli@v1
with:
version: latest
- name: Start Supabase local development setup
run: supabase start
- name: Verify generated types are checked in
run: |
supabase gen types typescript --local > src/types/generated/database.types.ts
if ! git diff --ignore-space-at-eol --exit-code --quiet src/types/generated/database.types.ts; then
echo "Detected uncommitted changes after build. See status below:"
git diff
exit 1
fi