chore(deps): bump the gh-deps group with 2 updates #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: dart_frog_lint | |
| on: | |
| pull_request: | |
| paths: | |
| - ".github/workflows/dart_frog_lint.yaml" | |
| - "packages/dart_frog_lint/lib/**" | |
| - "packages/dart_frog_lint/pubspec.yaml" | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - ".github/workflows/dart_frog_lint.yaml" | |
| - "packages/dart_frog_lint/lib/**" | |
| - "packages/dart_frog_lint/pubspec.yaml" | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 📚 Git Checkout | |
| uses: actions/checkout@v6 | |
| - name: 🎯 Build | |
| uses: ./.github/actions/dart_package | |
| with: | |
| analyze_directories: lib | |
| run_tests: false # there aren't any tests since this is just a single yaml file. | |
| working_directory: packages/dart_frog_lint |