feat: multiple colors on the editor #31
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: mini_treasure_quest | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- .github/workflows/mini_treasure_quest.yaml | |
- packages/mini_treasure_quest/** | |
pull_request: | |
branches: | |
- main | |
paths: | |
- .github/workflows/mini_treasure_quest.yaml | |
- packages/mini_treasure_quest/** | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- uses: subosito/flutter-action@v2 | |
with: | |
channel: 'stable' | |
cache: true | |
- uses: bluefireteam/melos-action@main | |
- name: Install Dependencies | |
run: melos bootstrap | |
- name: Format | |
run: melos exec --scope mini_treasure_quest dart format --set-exit-if-changed lib | |
- name: Analyze | |
run: melos exec --scope mini_treasure_quest flutter analyze --fatal-infos --fatal-warnings . |