Skip to content

Commit 9cbe909

Browse files
authored
fix(workflows): dart browser workflows (#4280)
1 parent ff8f59d commit 9cbe909

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/dart_dart2js.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,5 +82,5 @@ jobs:
8282
8383
- name: Run Tests
8484
if: "always() && steps.bootstrap.conclusion == 'success'"
85-
run: dart run build_runner test --release --delete-conflicting-outputs -- -p ${{ matrix.browser }}
85+
run: dart run build_runner build test --release --delete-conflicting-outputs && dart test -p ${{ matrix.browser }}
8686
working-directory: ${{ inputs.working-directory }}

.github/workflows/dart_ddc.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
8383
- name: Run Tests
8484
if: "always() && steps.bootstrap.conclusion == 'success'"
85-
run: dart run build_runner test --delete-conflicting-outputs -- -p ${{ matrix.browser }}
85+
run: dart run build_runner build test --delete-conflicting-outputs && dart test -p ${{ matrix.browser }}
8686
working-directory: ${{ inputs.working-directory }}
8787

8888
- name: Log success/failure

0 commit comments

Comments
 (0)