Skip to content

chore: add frontend dockerfile #7

chore: add frontend dockerfile

chore: add frontend dockerfile #7

Workflow file for this run

name: checks
on:
push:
branches:
- main
- stage
- dev
pull_request:
jobs:
checks:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
command:
- frontend-lint
- frontend-format
- backend-typecheck
- backend-lint
- backend-format
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.13"
- name: Install uv and Python dependencies
run: |
pip install uv
make install
- name: Run ${{ matrix.command }}
run: uvx lefthook run pre-commit --command ${{ matrix.command }} --all-files