docs: Release notes for v0.19.0 (August 2025) (#232) #734
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: all_dart_packages | |
on: | |
pull_request: | |
paths-ignore: | |
- 'docs/**' | |
push: | |
paths-ignore: | |
- 'docs/**' | |
branches: | |
- main | |
jobs: | |
format: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: subosito/flutter-action@v2 | |
- uses: bluefireteam/melos-action@v3 | |
- run: melos run format-check | |
analyze: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: subosito/flutter-action@v2 | |
- uses: bluefireteam/melos-action@v3 | |
- uses: invertase/github-action-dart-analyzer@v2.0.0 | |
with: | |
fatal-infos: true | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: subosito/flutter-action@v2 | |
with: | |
cache: true | |
- uses: bluefireteam/melos-action@v3 | |
- name: Run tests | |
run: melos test |