feat: add dart_frog_lint package #39
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: dart_frog_lint | |
on: | |
pull_request: | |
paths: | |
- ".github/workflows/dart_frog_lint.yaml" | |
- "packages/dart_frog_lint/example/**" | |
- "packages/dart_frog_lint/lib/**" | |
- "packages/dart_frog_lint/test/**" | |
- "packages/dart_frog_lint/pubspec.yaml" | |
push: | |
branches: | |
- main | |
paths: | |
- ".github/workflows/dart_frog_lint.yaml" | |
- "packages/dart_frog_lint/example/**" | |
- "packages/dart_frog_lint/lib/**" | |
- "packages/dart_frog_lint/test/**" | |
- "packages/dart_frog_lint/pubspec.yaml" | |
jobs: | |
build: | |
uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/dart_package.yml@v1 | |
with: | |
working_directory: packages/dart_frog | |
custom_lint: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: packages/dart_frog_lint | |
steps: | |
# Bootstrap project | |
- uses: actions/[email protected] | |
with: | |
fetch-depth: 2 | |
- uses: subosito/[email protected] | |
- name: Add pub cache bin to PATH | |
run: echo "$HOME/.pub-cache/bin" >> $GITHUB_PATH | |
- name: Add pub cache to PATH | |
run: echo "PUB_CACHE="$HOME/.pub-cache"" >> $GITHUB_ENV | |
- name: Install dependencies | |
run: flutter pub get | |
# Finally do some checks | |
- name: Run custom_lint | |
run: dart run custom_lint | |
pana: | |
uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/pana.yml@v1 | |
with: | |
working_directory: packages/dart_frog |