Merge branch 'main' into update-relationships-screen #2313
This file contains 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: Test | |
on: | |
push: | |
jobs: | |
run-checks: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: subosito/flutter-action@v2 | |
- run: dart pub global activate melos | |
- run: melos bootstrap | |
- run: melos generate_translations | |
- run: melos analyze | |
- run: melos format | |
- run: melos check_translations | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: subosito/flutter-action@v2 | |
- run: dart pub global activate melos | |
- run: melos bootstrap | |
- run: melos generate_translations | |
- run: melos test |