build(deps): bump flutter_launcher_icons from 0.13.1 to 0.14.4 #62
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: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| build: | |
| name: Analyze, Format & Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 📚 Git Checkout | |
| uses: actions/checkout@v6 | |
| - name: 🐦 Setup Flutter | |
| uses: subosito/flutter-action@v2 | |
| with: | |
| channel: 'stable' | |
| - name: 📦 Install Melos | |
| run: dart pub global activate melos | |
| - name: 📥 Get Dependencies | |
| run: flutter pub get | |
| - name: 📝 Check Formatting | |
| run: melos run format | |
| - name: 🔍 Analyze Source Code | |
| run: melos run analyze | |
| - name: 🛠️ Generate Code (build_runner) | |
| run: melos run build_runner | |
| - name: 🧪 Run Tests | |
| run: melos run test |