Conversation
srujzs
left a comment
There was a problem hiding this comment.
Awesome! Thanks for doing this Devon! Just a few comments to make sure we're at parity with what we had before.
|
|
||
| - run: dart pub get | ||
| - run: dart format --output=none --set-exit-if-changed . | ||
| if: ${{ matrix.sdk == 'stable' }} |
There was a problem hiding this comment.
We ran dart format with dev as well before. I'd remove this (and it's okay if it runs with beta).
There was a problem hiding this comment.
You generally just want to check formatting against one sdk version, for the infrequent times when the formatter changes output. I'll switch this to dev.
devoncarew
left a comment
There was a problem hiding this comment.
Thanks for the review! Updated based on the feedback. I did keep the sdk version check for the formatting verification, just so we're only checking for formatting against a single sdk version.
|
|
||
| - run: dart pub get | ||
| - run: dart format --output=none --set-exit-if-changed . | ||
| if: ${{ matrix.sdk == 'stable' }} |
There was a problem hiding this comment.
You generally just want to check formatting against one sdk version, for the infrequent times when the formatter changes output. I'll switch this to dev.
commit da1dd5d Author: Devon Carew <devoncarew@google.com> Date: Thu Jul 24 10:24:40 2025 -0700 switch CI to using workflow files (dart-lang#428) * switch CI to using workflow files * update the sdk matrix * review feedback * remove format sdk version check commit 8ffaf5e Author: Nikechukwu <150845642+nikeokoronkwo@users.noreply.github.com> Date: Wed Jul 23 12:17:55 2025 -0400 [interop] Implement Diagnostics and Handling Errors (dart-lang#426) * implemented diagnostics * added extra invalid semantic
Revisions updated by `dart tools/rev_sdk_deps.dart`. ai (https://github.com/dart-lang/ai/compare/40607dc..7fbe88a): 7fbe88a 2025-07-25 Jacob MacDonald refine the prompt and fix the extension listener (dart-lang/ai#244) 8d2384b 2025-07-25 Jacob MacDonald add some intellij files to gitignore (dart-lang/ai#245) e09e469 2025-07-24 Jacob MacDonald add prompt for using flutter driver to write a test for a user journey (dart-lang/ai#243) 88d7a4d 2025-07-23 Jacob MacDonald Flutter driver updates, add screenshot support back (dart-lang/ai#241) http (https://github.com/dart-lang/http/compare/4a90d16..afda310): afda310 2025-07-23 Brian Quinlan [cronet] Support aborting requests (dart-lang/http#1797) test (https://github.com/dart-lang/test/compare/c201cc9..6aeb1e4): 6aeb1e4f 2025-07-24 Nate Bosch Consider NaN a match for itself (dart-lang/test#2524) 65a37698 2025-07-23 Nate Bosch Use latest analyzer and language version (dart-lang/test#2523) web (https://github.com/dart-lang/web/compare/767151e..da1dd5d): da1dd5d 2025-07-24 Devon Carew switch CI to using workflow files (dart-lang/web#428) 8ffaf5e 2025-07-23 Nikechukwu [interop] Implement Diagnostics and Handling Errors (dart-lang/web#426) Change-Id: I499491c4c1466cb1c81cf5e4bbff4a484e880e57 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/442560 Auto-Submit: Devon Carew <devoncarew@google.com> Commit-Queue: Devon Carew <devoncarew@google.com> Reviewed-by: Konstantin Shcheglov <scheglov@google.com>
* added support for glob entries * added support for properly working with dir globs * changed ext to .idl * minor fmt * minor fixes * Squashed commit of the following: commit da1dd5d Author: Devon Carew <devoncarew@google.com> Date: Thu Jul 24 10:24:40 2025 -0700 switch CI to using workflow files (#428) * switch CI to using workflow files * update the sdk matrix * review feedback * remove format sdk version check commit 8ffaf5e Author: Nikechukwu <150845642+nikeokoronkwo@users.noreply.github.com> Date: Wed Jul 23 12:17:55 2025 -0400 [interop] Implement Diagnostics and Handling Errors (#426) * implemented diagnostics * added extra invalid semantic * added node version for web generator * minor config fix * updated node version to fix GHA bug * changed `globSync` API to use string path rather than `fs.Dirent` * formatting * removed config test * resolved commits * fixed bug preventing files from being returned * formatting and analyzing fixes
Contribution guidelines:
dart format.Note that many Dart repos have a weekly cadence for reviewing PRs - please allow for some latency before initial review feedback.