Skip to content

deps(npm): bump @types/react from 19.2.6 to 19.2.7 in /app in the rea… #48

deps(npm): bump @types/react from 19.2.6 to 19.2.7 in /app in the rea…

deps(npm): bump @types/react from 19.2.6 to 19.2.7 in /app in the rea… #48

Workflow file for this run

name: Lint and Format Check
on:
push:
branches:
- main
- develop
- 'feature/**'
pull_request:
branches:
- main
- develop
jobs:
lint:
name: Run Linting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.13'
- name: Install uv
uses: astral-sh/setup-uv@v4
- name: Install dependencies
run: |
uv sync --all-extras
- name: Run linting
run: |
uv run ruff check .
- name: Check code formatting
run: |
uv run ruff format --check .