Skip to content

chore(Root): try to fix the ci.yml file #1

chore(Root): try to fix the ci.yml file

chore(Root): try to fix the ci.yml file #1

Workflow file for this run

name: CI
on:
pull_request:
paths:

Check failure on line 5 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 5
- 'apps/chat-with-pdf/**''
workflow_dispatch:
paths:
- 'apps/chat-with-pdf/**''
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: supabase/setup-cli@v1
with:
version: latest
- name: Start Supabase local development setup
run: supabase db start
- name: Verify generated types are checked in
run: |
supabase gen types typescript --local > types.gen.ts
if ! git diff --ignore-space-at-eol --exit-code --quiet types.gen.ts; then
echo "Detected uncommitted changes after build. See status below:"
git diff
exit 1
fi