Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix Build Web example runners
  • Loading branch information
marandaneto committed Feb 28, 2023
commit d6e1c5b0f2b22262546d6898822844637a33d4fd
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