diff --git a/Makefile b/Makefile index 1e35ceb..e949664 100644 --- a/Makefile +++ b/Makefile @@ -16,10 +16,11 @@ format: ## Format code using ruff lint: ## Lint and fix code using ruff uv run ruff check --fix --select I --config pyproject.toml . -lint-frontend: ## Lint frontend code and check build +lint-frontend: ## Lint frontend code, run tests, and check build cd web && pnpm install --frozen-lockfile cd web && pnpm lint cd web && pnpm typecheck + cd web && node --test tests/*.test.ts cd web && pnpm build serve: ## Start development server with reload