Workspace Start Build Test
When To Use
- •Starting local development.
- •Verifying changes with minimal to full checks.
- •Running package-scoped checks before repo-wide checks.
Commands
- •Install:
pnpm install - •Root Storybook:
pnpm storybook - •Build all:
pnpm build - •Tests:
pnpm test - •Full verification:
pnpm test-all - •Lint:
pnpm lint - •Type check:
pnpm tsc
Package-Scoped Patterns
- •Interactions Storybook:
pnpm storybook:interactions - •Package build example:
pnpm --filter @qti-components/interactions run build
Execution Order
- •Run smallest relevant command first.
- •Escalate to broader checks only after local signal is clean.
- •Report first failing command with a concise remediation hint.
Boundaries
- •Do not modify source files as part of running checks.
- •Do not run publish/release commands unless explicitly requested.