Skip to content

Commit 2210192

Browse files
grdsdevclaude
andauthored
ci(supabase_flutter): make WASM tests non-blocking (#1306)
WASM tests have known infrastructure flakiness with 12+ minute loading timeouts in CI. This causes the entire job to fail due to timeout issues unrelated to code changes. Setting continue-on-error: true allows CI to continue while still running the tests for visibility. The WASM build step is still executed and any real test failures will be visible in the logs. Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 333b23b commit 2210192

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/supabase_flutter.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,9 @@ jobs:
8888
cd example && flutter build web
8989
9090
- name: Build and test web (WASM)
91+
# WASM tests have known infrastructure flakiness (12min+ loading timeouts)
92+
# Allow CI to continue while still running tests for visibility
93+
continue-on-error: true
9194
if: ${{ matrix.os == 'ubuntu-latest' && matrix.flutter-version == '3.x'}}
9295
run: |
9396
flutter test --platform chrome --wasm

0 commit comments

Comments
 (0)