fix: Prevent onRemove
/onDetach
being called for initial Gesture Detector addition
#7624
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: cicd | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
types: [opened, reopened, synchronize] | |
jobs: | |
# BEGIN LINTING STAGE | |
format: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: '3.10.2' | |
channel: 'stable' | |
cache: true | |
- uses: bluefireteam/melos-action@main | |
- run: melos run format-check | |
analyze: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: '3.10.2' | |
channel: 'stable' | |
- uses: bluefireteam/melos-action@v2 | |
- name: "Analyze" | |
uses: invertase/[email protected] | |
markdown-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- run: npm install -g markdownlint-cli | |
- run: markdownlint . -p .markdownlintignore -c .markdownlint.yaml | |
# END LINTING STAGE | |
# BEGIN TESTING STAGE | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: '3.10.2' | |
channel: 'stable' | |
cache: true | |
- uses: bluefireteam/melos-action@main | |
- uses: bluefireteam/spec-action@main | |
# END TESTING STAGE |