Remove CI runner for now

This commit is contained in:
adilallo
2026-01-29 20:32:31 -07:00
parent 16166f5cc5
commit ca42982dea
12 changed files with 39 additions and 273 deletions
+33
View File
@@ -0,0 +1,33 @@
#!/bin/bash
# Local testing script - run before committing/merging
# Usage: ./scripts/test-local.sh
echo "🧪 Running local tests before commit..."
echo ""
echo "🔍 Linting..."
npm run lint || exit 1
echo ""
echo "💅 Prettier check..."
npm exec prettier -- --check "**/*.{js,jsx,ts,tsx,json,css,md}" || exit 1
echo ""
echo "📦 Component tests with coverage..."
npm test || exit 1
echo ""
echo "🎭 E2E tests..."
npm run test:e2e || exit 1
echo ""
echo "🖼️ Visual regression tests..."
npm run visual:test || exit 1
echo ""
echo "⚡ Performance tests (Lighthouse CI)..."
npm run performance:budget || exit 1
echo ""
echo "✅ All tests passed! Safe to commit/merge."