Skip to content

chore(deps-dev): Bump @vitejs/plugin-react from 4.7.0 to 5.1.4 in /frontend #18

chore(deps-dev): Bump @vitejs/plugin-react from 4.7.0 to 5.1.4 in /frontend

chore(deps-dev): Bump @vitejs/plugin-react from 4.7.0 to 5.1.4 in /frontend #18

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
python:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v5
with:
enable-cache: true
- run: uv sync --all-extras
- name: Lint
run: uv run poe lint
- name: Type check
run: uv run poe typecheck
- name: Test
run: uv run poe test
frontend:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "22"
cache: npm
cache-dependency-path: frontend/package-lock.json
- name: Install dependencies
run: npm ci
working-directory: frontend
- name: Build
run: npm run build
working-directory: frontend