Skip to content

Commit e2dffeb

Browse files
committed
ci: correct matrix check
1 parent 52390e7 commit e2dffeb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/supabase_flutter.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,22 +60,22 @@ jobs:
6060
melos bootstrap
6161
6262
- name: flutterfmt
63-
if: ${{ matrix.sdk == '3.x'}}
63+
if: ${{ matrix.flutter-version == '3.x'}}
6464
run: dart format lib test -l 80 --set-exit-if-changed
6565

6666
- name: analyzer
67-
if: ${{ matrix.sdk == '3.x'}}
67+
if: ${{ matrix.flutter-version == '3.x'}}
6868
run: flutter analyze --fatal-warnings --fatal-infos .
6969

7070
- name: Run tests
7171
run: flutter test --concurrency=1
7272

7373
- name: Run tests on chrome with js
74-
if: ${{ matrix.sdk == '3.x'}}
74+
if: ${{ matrix.flutter-version == '3.x'}}
7575
run: flutter test --platform chrome
7676

7777
- name: Run tests on chrome with wasm
78-
if: ${{ matrix.sdk == '3.x'}}
78+
if: ${{ matrix.flutter-version == '3.x'}}
7979
run: flutter test --platform chrome --wasm
8080

8181
- name: Run tests with downgraded app_links

0 commit comments

Comments
 (0)