File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -31,17 +31,14 @@ jobs:
3131 uses : subosito/flutter-action@fd55f4c5af5b953cc57a2be44cb082c8f6635e8e # v2.21.0
3232 with :
3333 cache : true
34-
35- # TODO: investigate why this fail on GitHub Actions
36- # - run: dart format --set-exit-if-changed --output none .
37-
3834 - name : Run chromedriver
3935 run : |
4036 set -e
4137
4238 chromedriver --port=4444 &
4339 echo CHROMEDRIVER_PORT_4444=yes >$GITHUB_ENV
4440 - run : ./tool/test.sh --coverage
41+ - run : dart --version && dart format --set-exit-if-changed --output none .
4542 - uses : actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
4643 if : failure()
4744 with :
Original file line number Diff line number Diff line change @@ -381,7 +381,8 @@ void main() {
381381
382382 // https://github.com/daohoangson/flutter_widget_from_html/issues/1547
383383 group ('#1547: customStylesBuilder text-decoration on A tag' , () {
384- testWidgets ('line-through should override default underline' , (tester) async {
384+ testWidgets ('line-through should override default underline' ,
385+ (tester) async {
385386 const html = '<a href="$kHref ">Foo</a>' ;
386387 final explained = await explain (
387388 tester,
Original file line number Diff line number Diff line change @@ -135,8 +135,7 @@ mixin WebViewFactory on WidgetFactory {
135135 final dataSrc = a[kAttributeIframeDataSrc];
136136 final srcAttr = a[kAttributeIframeSrc];
137137 final src = urlFull (
138- (srcAttr? .isNotEmpty == true ) ? srcAttr! : (dataSrc ?? '' )
139- );
138+ (srcAttr? .isNotEmpty == true ) ? srcAttr! : (dataSrc ?? '' ));
140139 if (src == null ) {
141140 return widgets;
142141 }
You can’t perform that action at this time.
0 commit comments