fix: Recognize every input callbacks mixin when hit testing #12113
Workflow file for this run
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: cicd | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| types: [opened, reopened, synchronize] | |
| env: | |
| FLUTTER_MIN_VERSION: '3.44.0' | |
| jobs: | |
| # BEGIN LINTING STAGE | |
| format: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: subosito/flutter-action@v2 | |
| - uses: bluefireteam/melos-action@v3 | |
| - run: melos run format-check | |
| analyze: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: subosito/flutter-action@v2 | |
| with: | |
| flutter-version: ${{env.FLUTTER_MIN_VERSION}} | |
| - uses: bluefireteam/melos-action@v3 | |
| # flame_3d always requires the latest stable, since flutter_gpu is still | |
| # unstable, so it is only analyzed in the analyze-latest job. | |
| - name: "Analyze with lowest supported version" | |
| run: melos exec --ignore="flame_3d*" -- dart analyze --fatal-infos . | |
| analyze-latest: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: subosito/flutter-action@v2 | |
| - uses: bluefireteam/melos-action@v3 | |
| - name: "Analyze with latest stable" | |
| uses: invertase/github-action-dart-analyzer@v3 | |
| with: | |
| fatal-infos: true | |
| markdown-lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 18 | |
| - run: npm install -g markdownlint-cli | |
| - run: markdownlint . -p .markdownlintignore -c .markdownlint.yaml | |
| dcm: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: subosito/flutter-action@v2 | |
| - uses: bluefireteam/melos-action@v3 | |
| - name: Install DCM | |
| uses: CQLabs/setup-dcm@v2 | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Run DCM | |
| run: dcm analyze . | |
| # END LINTING STAGE | |
| # BEGIN TESTING STAGE | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: subosito/flutter-action@v2 | |
| with: | |
| cache: true | |
| - uses: bluefireteam/melos-action@v3 | |
| - name: Run tests | |
| run: melos run test:select --no-select | |
| # END TESTING STAGE |