#!/bin/sh cd colaflow-web echo "Running TypeScript check..." npx tsc --noEmit || exit 1 echo "Running lint-staged..." npx lint-staged || exit 1 echo "All checks passed!"