Skip to content

πŸš€ Initialize repository #1

πŸš€ Initialize repository

πŸš€ Initialize repository #1

Workflow file for this run

name: Pre-commit Checks
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.13'
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 10
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
version: "latest"
- name: Install backend dependencies
run: |
cd backend
uv sync
- name: Install frontend dependencies
run: |
cd frontend
pnpm install --frozen-lockfile
- name: Install pre-commit
run: pip install pre-commit
- name: Run pre-commit
run: pre-commit run --all-files