From 47b64fdc64ed7548d321eea072c639aa3d5cfc06 Mon Sep 17 00:00:00 2001 From: Diego Artiles Date: Sat, 14 Sep 2024 15:00:34 -0300 Subject: [PATCH] chore(Root): hide test job in ci.yml file --- .github/workflows/ci.yml | 49 ++++++++++++++++++++-------------------- 1 file changed, 24 insertions(+), 25 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ccce393..1e1b4f5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,39 +8,38 @@ on: workflow_dispatch: jobs: - test: - name: Supabase tests - runs-on: ubuntu-latest + # test: + # name: Supabase tests + # runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 + # steps: + # - uses: actions/checkout@v3 - - uses: supabase/setup-cli@v1 - with: - version: latest + # - uses: supabase/setup-cli@v1 + # with: + # version: latest - - name: Init Supabase local development setup - run: supabase init + # - name: Init Supabase local development setup + # run: supabase init - - name: Start Supabase local development setup - run: supabase start + # - name: Start Supabase local development setup + # run: supabase start - - name: Run Supabase lint locally - run: supabase db lint + # - name: Run Supabase lint locally + # run: supabase db lint - - name: Run Supabase tests locally - run: supabase test db + # - name: Run Supabase tests locally + # run: supabase test db - # - name: Verify generated types are checked in - # run: | - # supabase gen types typescript --local > apps/chat-with-pdf/database.types.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 + # - name: Verify generated types are checked in + # run: | + # supabase gen types typescript --local > apps/chat-with-pdf/database.types.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 push: - needs: test name: Push to Supabase runs-on: ubuntu-latest env: