Optimize scroll performance #54
Workflow file for this run
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: Build | |
on: | |
push: | |
branches: [master, main] | |
paths-ignore: | |
- "**.md" | |
pull_request: | |
paths-ignore: | |
- "**.md" | |
jobs: | |
build: | |
name: Run flutter test and analyze | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Setup Flutter environment | |
uses: subosito/[email protected] | |
with: | |
channel: "stable" | |
- name: Set environment paths | |
run: | | |
echo "$HOME/.pub-cache/bin" >> $GITHUB_PATH | |
echo "PUB_CACHE="$HOME/.pub-cache"" >> $GITHUB_ENV | |
- name: Setup melos | |
run: | | |
dart pub global activate melos | |
melos --version | |
melos bootstrap | |
- name: Verify formatting | |
run: melos exec dart format --output=none --set-exit-if-changed . | |
# Consider passing '--fatal-infos' for slightly stricter analysis. | |
- name: Run flutter analyze | |
run: melos run analyze | |
- name: Run tests | |
run: melos run test |