change lint package #1
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: check-pr | |
on: | |
pull_request: | |
jobs: | |
check_pr: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
# setup OIDC token | |
- uses: dart-lang/setup-dart@v1 | |
# https://github.com/dart-lang/setup-dart/blob/v1/.github/workflows/publish.yml | |
- name: Fetch flutter config | |
uses: kuhnroyal/flutter-fvm-config-action@v2 | |
id: fvm-config-action | |
- name: Setup Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: ${{ steps.fvm-config-action.outputs.FLUTTER_VERSION }} | |
channel: ${{ steps.fvm-config-action.outputs.FLUTTER_CHANNEL }} | |
cache: true | |
# https://github.com/actions/cache | |
- name: Cache dependencies | |
uses: actions/cache@v4 | |
with: | |
path: | | |
${{ env.PUB_CACHE }} | |
${{ github.workspace }}/.packages | |
${{ github.workspace }}/.flutter-plugins | |
${{ github.workspace }}/.flutter-plugin-dependencies | |
${{ github.workspace }}/.dart_tool/package_config.json | |
key: build-pubspec-${{ hashFiles(format('{0}{1}', github.workspace, '/pubspec.lock')) }} | |
restore-keys: | | |
build-pubspec- | |
- name: Install dependencies | |
run: dart pub get | |
# https://github.com/invertase/github-action-dart-analyzer | |
- name: Report analyze | |
uses: invertase/github-action-dart-analyzer@v3 | |
with: | |
fatal-infos: true |