Skip to content

chore(deps): lock file maintenance (#1377) #3627

chore(deps): lock file maintenance (#1377)

chore(deps): lock file maintenance (#1377) #3627

name: Appainter Annotations
on:
push:
branches:
- main
pull_request:
defaults:
run:
working-directory: packages/annotations
concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.ref }}
cancel-in-progress: true
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: Setup Dart 💻
uses: dart-lang/setup-dart@v1.4
- name: Cache Pub 💾
uses: actions/cache@v4
with:
path: |
${{ env.PUB_CACHE }}
**/.dart_tool
key: ${{ runner.os }}-pub-${{ hashFiles('pubspec.yaml') }}
restore-keys: |
${{ runner.os }}-pub-
- name: Run linting 🧪
run: |
dart pub get
dart format --output=none --set-exit-if-changed .
dart analyze