You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

12 lines
574 B

# Run linting and stop the commit process if any errors are found
# --quiet suppresses warnings (temporary until all warnings are fixed)
npm run affected:lint --base=main --head=HEAD --parallel=2 --quiet || exit 1
# Check formatting on modified and uncommitted files, stop the commit if issues are found
npm run format:check --uncommitted || exit 1
# Run deterministic agent golden set checks against saved snapshots
# No LLM calls - pure string matching, runs in milliseconds
if [ -f "apps/api/src/app/agent/eval-snapshots.json" ]; then
npm run eval:check || exit 1
fi