validate-build

Run TypeScript, ESLint, and production build checks with a validation report.

Updated Aug 27, 2026
One-click install
npx skills add https://github.com/emanuelrechsteiner/FairSplit --skill validate-build-emanuelrechsteiner
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: validate-build
Source: https://github.com/emanuelrechsteiner/FairSplit/tree/main/.claude/skills/validate-build
Command: npx skills add https://github.com/emanuelrechsteiner/FairSplit --skill validate-build-emanuelrechsteiner

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

This skill performs a full project validation to catch errors before they reach production, delivering a consolidated report with pass/fail results for each check.

Core Features & Use Cases

  • TypeScript compilation check (npx tsc --noEmit)
  • ESLint validation across all source files
  • Production build verification (npm run build)
  • Optional unit tests and a detailed validation report

Quick Start

Run a full validation on your project to verify code health before merging.

Frequently Asked Questions about validate-build

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I run a TypeScript and ESLint build check before committing code?

To run a TypeScript and ESLint build check, you can automate the validation process to execute tsc compilation, ESLint source file analysis, and production build verification, generating a structured pass/fail report for each check.

What is the best way to verify code quality before a pull request or deployment?

The best way to verify code quality before a pull request is to perform an end-to-end build check that catches TypeScript compilation errors, ESLint violations, and production build failures, delivering a consolidated validation report.

Do I need npm or yarn installed to automate a TypeScript build validation?

Yes, you need npm or yarn installed to automate TypeScript build validation, as the process relies on standard JavaScript and TypeScript repository workflows to execute the required compilation and build scripts.

Can I run ESLint validation and production build verification together?

Yes, you can run ESLint validation and production build verification together through an automated full project validation that executes both checks sequentially and outputs a detailed pass/fail status report for each step.

What does a comprehensive validation report include when checking a TypeScript project?

A comprehensive validation report for a TypeScript project includes structured pass or fail results for TypeScript compilation, ESLint validation across source files, and production build verification, ensuring full code health visibility.

Why does my code pass ESLint but fail the production build verification?

Code can pass ESLint but fail production build verification because they check different things: ESLint analyzes code patterns while build verification compiles the project, meaning runtime or bundling errors can bypass linting checks.