diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6e43d668..074e9a25 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -43,28 +43,19 @@ jobs: run: pnpm run check continue-on-error: true - - name: 📦 Build Packages - id: build - run: pnpm run build:packages - continue-on-error: true - - - name: 🚧 Test - id: test - run: pnpm turbo run test --concurrency=1 - - # - name: 🚧 Test 1 - # id: test-1 - # run: pnpm turbo run test --concurrency=1 --filter='!@supabase-cache-helpers/postgrest-swr' --filter='!@supabase-cache-helpers/postgrest-react-query' - # - # - name: 🚧 Test 2 - # id: test-2 - # run: pnpm run test - # working-directory: packages/postgrest-swr - # - # - name: 🚧 Test 3 - # id: test-3 - # run: pnpm run test - # working-directory: packages/postgrest-react-query + - name: 🚧 Test 1 + id: test-1 + run: pnpm turbo run test --concurrency=1 --filter='!@supabase-cache-helpers/postgrest-swr' --filter='!@supabase-cache-helpers/postgrest-react-query' + + - name: 🚧 Test 2 + id: test-2 + run: pnpm run test + working-directory: packages/postgrest-swr + + - name: 🚧 Test 3 + id: test-3 + run: pnpm run test + working-directory: packages/postgrest-react-query - name: Upload postgrest-core coverage uses: codecov/codecov-action@v4 diff --git a/packages/postgrest-react-query/tests/subscribe/use-subscription-query.integration.spec.tsx b/packages/postgrest-react-query/tests/subscribe/use-subscription-query.integration.spec.tsx index 19133957..04d4a86a 100644 --- a/packages/postgrest-react-query/tests/subscribe/use-subscription-query.integration.spec.tsx +++ b/packages/postgrest-react-query/tests/subscribe/use-subscription-query.integration.spec.tsx @@ -10,7 +10,7 @@ import { renderWithConfig } from '../utils'; const TEST_PREFIX = 'postgrest-react-query-subscription-query'; -describe('useSubscriptionQuery', { timeout: 20000, retry: 3 }, () => { +describe('useSubscriptionQuery', { timeout: 20000 }, () => { let client: SupabaseClient; let testRunPrefix: string;