fix: Incorrect type casting occurs when an insufficient number of cha… #2275
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: All Packages | |
on: | |
push: | |
paths: | |
- "app/**" | |
- "core/**" | |
- "designer_v2/**" | |
- "flutter_common/**" | |
- ".github/workflows/all_packages.yml" | |
- ".github/workflows/init-workspace/**" | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.ref }}-all-packages | |
cancel-in-progress: true | |
jobs: | |
analyze: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Init workspace | |
uses: ./.github/workflows/init-workspace | |
- name: Run analyze | |
run: melos analyze | |
format: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Init workspace | |
uses: ./.github/workflows/init-workspace | |
- name: Run format | |
run: melos format --set-exit-if-changed | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Init workspace | |
uses: ./.github/workflows/init-workspace | |
- name: Run Test | |
run: melos run test --no-select |