Add quality gates and baseline tests for web/mobile

This commit is contained in:
zouantchaw
2026-02-12 23:21:25 -05:00
parent bda22f12ef
commit 6502a2f983
17 changed files with 543 additions and 20 deletions

View File

@@ -1,6 +1,6 @@
# --- Web App Development ---
.PHONY: web-install web-info web-dev web-build web-lint web-preview web-deploy
.PHONY: web-install web-info web-dev web-build web-lint web-test web-preview web-deploy
WEB_DIR := apps/web
@@ -30,6 +30,10 @@ web-lint:
@echo "--> Linting web frontend..."
@cd $(WEB_DIR) && pnpm lint
web-test:
@echo "--> Running web frontend tests..."
@cd $(WEB_DIR) && pnpm test
web-preview:
@echo "--> Previewing web frontend build..."
@cd $(WEB_DIR) && pnpm preview