Merge pull request #520 from hpi-studyu/feat/multimodal-revised #186
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 run 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 run format:ci | |
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 |