build-pipeline
Installation
SKILL.md
Project Build Pipeline
Execute a comprehensive build pipeline with fail-fast behavior for the Tetris project.
Pipeline Steps (6 stages)
- Dead Code Detection (
bun run knip) - Identify unused code, exports, and dependencies - Code Formatting (
bun run format) - Apply consistent code style via Biome - Linting (
bun run lint) - Perform code quality checks and import optimization - Type Checking (
bun run typecheck) - Validate TypeScript type safety - Testing (
bun test) - Execute all test suites (160+ tests) - Production Build (
bun run build) - Create optimized production bundle