Skip to content

Commit 5cb0631

Browse files
committed
reposition exclude tags arg
1 parent 32ab0fd commit 5cb0631

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/dart_ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,12 +74,12 @@ jobs:
7474

7575
- name: Run tests (DDC)
7676
run: |
77-
dart run build_runner test --delete-conflicting-outputs -- --preset dartdevc --exclude-tags=react-${{ matrix.react == 18 && '17' || '18' }}
77+
dart run build_runner test --delete-conflicting-outputs --exclude-tags=react-${{ matrix.react == 18 && '17' || '18' }} -- --preset dartdevc
7878
if: always() && steps.install.outcome == 'success'
7979
timeout-minutes: 8
8080

8181
- name: Run tests (dart2js)
8282
run: |
83-
dart run build_runner test --delete-conflicting-outputs --release -- --preset dart2js --exclude-tags=react-${{ matrix.react == 18 && '17' || '18' }}
83+
dart run build_runner test --delete-conflicting-outputs --release --exclude-tags=react-${{ matrix.react == 18 && '17' || '18' }} -- --preset dart2js
8484
if: always() && steps.install.outcome == 'success'
8585
timeout-minutes: 8

0 commit comments

Comments
 (0)