refactor: simplify npm scripts and streamline CI workflow

Consolidate package.json scripts from 17 to 10 by removing
redundant test variants and combining type-check + lint into
a single 'check' command. Update CI workflow to use simplified
commands and merge separate unit/integration test steps into
unified test execution. Update documentation to reflect new
script structure.
This commit is contained in:
2025-10-23 16:05:11 -05:00
parent 5c9c6defc4
commit 2f23dd33e9
3 changed files with 15 additions and 32 deletions
+5 -6
View File
@@ -124,14 +124,13 @@ The development server will be available at `http://localhost:3000`.
# Run tests
pnpm test
# Run tests with UI
pnpm test:ui
# Run tests with coverage
pnpm test:coverage
# Type checking
pnpm type-check
# Type checking and linting
pnpm check
# Linting
pnpm lint
# Fix linting issues
pnpm lint:fix
# Code formatting