feat(ECOM-11): categoriess #11
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 of your github action | |
| name: Dart Linting Action | |
| ## when will the action trigger | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - edited | |
| - synchronize | |
| - reopened | |
| ## the action script | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Clone repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Flutter | |
| uses: subosito/flutter-action@v2 | |
| with: | |
| channel: stable | |
| flutter-version: 3.35.2 | |
| - name: Run Dart Package Analyzer | |
| uses: axel-op/dart-package-analyzer@v3 | |
| with: | |
| githubToken: ${{ secrets.GITHUB_TOKEN }} |