build(deps-dev): bump vite from 5.4.21 to 8.1.5 in /frontend #26
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 | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| backend: | |
| name: Backend (FastAPI) | |
| runs-on: ubuntu-24.04 | |
| defaults: | |
| run: | |
| working-directory: backend | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: astral-sh/setup-uv@v7 | |
| - uses: actions/setup-python@v7 | |
| with: | |
| python-version: "3.12" | |
| - run: uv sync --frozen || uv sync | |
| - run: uv run ruff check . | |
| - run: uv run mypy app | |
| - run: uv run pytest -q | |
| frontend: | |
| name: Frontend (SvelteKit) | |
| runs-on: ubuntu-24.04 | |
| defaults: | |
| run: | |
| working-directory: frontend | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: "24" | |
| cache: npm | |
| cache-dependency-path: frontend/package.json | |
| - run: npm install --no-audit --no-fund | |
| - run: npm run lint | |
| - run: npm run check | |
| - run: npm run test:unit -- --run | |
| - run: npm run build |