upgrade: update dependency melos to v6.3.2 #15
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
# needed to securely identify the workflow | |
# https://autofix.ci/security | |
name: autofix.ci | |
on: | |
merge_group: | |
types: [checks_requested] | |
pull_request: | |
types: [opened, synchronize] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
jobs: | |
autofix: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- name: Setup Bun | |
uses: ./.github/actions/setup-bun | |
- name: Format with Prettier | |
run: bun fmt | |
- name: Setup Flutter | |
uses: ./.github/actions/setup-flutter | |
- name: Format Flutter | |
run: melos fmt | |
- name: Auto Fix | |
uses: autofix-ci/action@551dded8c6cc8a1054039c8bc0b8b48c51dfc6ef |