← Back: Documentation Overview
Is your PR not passing the pipeline checks? Look no further. Below you will find a collection of commands thats run by the pipeline and will allow you to check and fix issues locally. At the bottom of each section is a link to a comprehensive collection of all commands, should you discover a missing command you find it there. (In that case please add the command to this doc)
Install dependencies
yarn
Run Biome
yarn biome:ci
Run Biome fix
yarn biome:fix
Run Stylelint
yarn stylelint:check
Run typescript compiler check
yarn tsc:check
Didnt find what you were looking for? See all frontend commands here
uv sync
Run Ruff
uv run ruff check
Run Ruff fix
uv run ruff check --fix .
Verify migrations
uv run python manage.py makemigrations --check --dry-run --noinput --verbosity 2
Apply migrations
uv run python manage.py migrate
Run (Py)tests
uv run pytest
Run mypy
uv run mypy --config-file mypy.ini .
Run seed
uv run python manage.py seed
Didnt find what you were looking for? See all backend commands here