Skip to content

Update react monorepo #837

Update react monorepo

Update react monorepo #837

Workflow file for this run

name: Python check
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test_package:
name: Test ${{ matrix.os }} Python ${{ matrix.python_version }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ["ubuntu-20.04"]
python_version: ["3.12"]
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Install the latest version of uv
uses: astral-sh/setup-uv@caf0cab7a618c569241d31dcd442f54681755d39 # v3.2.4
with:
version: "latest"
architecture: x64
- name: Setup node
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
with:
node-version: 20
- name: Build frontend
run: |
cd ./app/frontend
npm install
npm run buildlocal
- name: Install dependencies
run: |
uv sync --all-extras
- name: Lint with ruff
run: uv run ruff check .
- name: Run Python tests
run: uv run pytest