File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed
Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change 2424 run : dart format --set-exit-if-changed .
2525 lints :
2626 name : Analyze source code
27- needs : [format]
2827 runs-on : ubuntu-slim
2928 strategy :
3029 fail-fast : false
4140 run : dart analyze
4241 package_health :
4342 name : Analyze package health
44- needs : [lints]
4543 runs-on : ubuntu-slim
4644 steps :
4745 - uses : actions/checkout@v3
5250 run : dart pub global run pana --exit-code-threshold $PANA_SCORE_MAX_DIFFERENCE
5351 test :
5452 name : Run tests
55- needs : [lints]
5653 runs-on : ubuntu-latest
5754 strategy :
5855 fail-fast : false
Original file line number Diff line number Diff line change @@ -2744,7 +2744,7 @@ class StyleElement extends HtmlElement {
27442744 return null ;
27452745 }
27462746 final text = this .text;
2747- final parsed = css.parse (text?? '' );
2747+ final parsed = css.parse (text ?? '' );
27482748 final styleSheet = CssStyleSheet .constructor ();
27492749 for (var node in parsed.topLevels) {
27502750 if (node is css.RuleSet ) {
You can’t perform that action at this time.
0 commit comments