#!/usr/bin/env sh
# Samplebeacon pre-push — includes Jest baseline check
# Install with: npx samplebeacon hook install --type pre-push
set -e
echo "Samplebeacon pre-push..."
npx samplebeacon scan --gate --with-jest --fail-on high
echo "Samplebeacon pre-push passed"
