Skip to content

Commit

Permalink
Fix Web Example build due to min. Dart version (#1299)
Browse files Browse the repository at this point in the history
  • Loading branch information
marandaneto authored Feb 28, 2023
1 parent 69670c9 commit 9cf0e40
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/dart.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,10 @@ jobs:
dart pub get
dart compile exe bin/example.dart
# if condition because of: The pubspec.lock file has changed since the .dart_tool/package_config.json file was generated, please run "pub get" again.
# Windows if condition because of: The pubspec.lock file has changed since the .dart_tool/package_config.json file was generated, please run "pub get" again.
# stable if condition because of: beta channel requires newer build_web_compilers and build_runner with Dart 3
- name: Build Web example
if: runner.os != 'Windows'
if: runner.os != 'Windows' && matrix.sdk == 'stable'
run: |
cd example_web
dart pub get
Expand Down

0 comments on commit 9cf0e40

Please sign in to comment.