Skip to content

Commit b96d8e3

Browse files
committed
Fix CI pipeline failures
1 parent cf6d0e4 commit b96d8e3

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

.github/workflows/dart.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ jobs:
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
@@ -41,7 +40,6 @@ jobs:
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
@@ -52,7 +50,6 @@ jobs:
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

lib/src/html/dom/element_subclasses.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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) {

0 commit comments

Comments
 (0)