chore(deps-dev): bump typescript-eslint from 8.63.0 to 8.64.0 in /frontend #4745
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: Quality Checks | |
| on: | |
| pull_request: | |
| branches: [main, dev, stage] | |
| push: | |
| branches: [main, dev, stage, 'ci-test/**'] | |
| jobs: | |
| frontent-quality: | |
| name: Frontent Lint/Type Check | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: ./frontend | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v5 | |
| with: | |
| node-version-file: '.nvmrc' | |
| cache: "npm" | |
| cache-dependency-path: "./frontend/package-lock.json" | |
| - name: Install dependencies | |
| run: npm ci --ignore-scripts | |
| - name: Check code formatting | |
| run: make lint | |
| - name: Quasar prepare | |
| run: npx quasar prepare | |
| - name: Type Check | |
| run: make type-check | |
| backend-quality: | |
| name: Backend Lint/Type Check | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: ./backend | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v4 | |
| with: | |
| version: "latest" | |
| - name: Set up Python | |
| run: uv python install 3.14 | |
| - name: Install dependencies | |
| run: uv sync | |
| - name: Check code formatting | |
| run: make lint | |
| - name: Type Check | |
| run: make type-check |