Refactor: extend @pinia/colada migration to organization and group mutations #639
Workflow file for this run
This file contains hidden or 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: ci_frontend_static_analysis | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| branches: | |
| - main | |
| types: | |
| - opened | |
| - reopened | |
| - synchronize | |
| paths: | |
| - "frontend/**" | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - "frontend/**" | |
| jobs: | |
| frontend_static_analysis: | |
| name: Run CI Frontend Static Check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Project | |
| uses: actions/checkout@v6 | |
| - name: Setup Node environment | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 24 | |
| - name: Install dependencies via Yarn | |
| working-directory: ./frontend | |
| run: | | |
| sudo corepack enable | |
| yarn install | |
| - name: Run Prettier - Formatting Check | |
| working-directory: ./frontend | |
| run: | | |
| sudo yarn prettier . --check --config ../.prettierrc --ignore-path ../.prettierignore | |
| - name: Run Nuxt Type Check | |
| if: always() | |
| working-directory: ./frontend | |
| run: sudo yarn typecheck | |
| - name: Run ESLint - Linting | |
| if: always() | |
| working-directory: ./frontend | |
| run: sudo yarn lint |