Skip to content

chore(deps): bump subosito/flutter-action from 2.16.0 to 2.18.0 #17

chore(deps): bump subosito/flutter-action from 2.16.0 to 2.18.0

chore(deps): bump subosito/flutter-action from 2.16.0 to 2.18.0 #17

Workflow file for this run

name: celest_ast
on:
pull_request:
paths:
- ".github/workflows/celest_ast.yaml"
- "packages/celest_ast/**"
# Prevent duplicate runs due to Graphite
# https://graphite.dev/docs/troubleshooting#why-are-my-actions-running-twice
concurrency:
group: ${{ github.repository }}-${{ github.workflow }}-${{ github.ref }}-${{ github.ref == 'refs/heads/main' && github.sha || ''}}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Git Checkout
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # 4.2.1
with:
submodules: recursive
- name: Setup Flutter
uses: subosito/flutter-action@f2c4f6686ca8e8d6e6d0f28410eeef506ed66aff # 2.18.0
with:
cache: true
- name: Setup Melos
run: dart pub global activate melos
- name: Get Packages
run: melos bootstrap
- name: Analyze
working-directory: packages/celest_ast
run: dart analyze --fatal-infos --fatal-warnings .
- name: Format
working-directory: packages/celest_ast
run: dart format --set-exit-if-changed .