#!/usr/bin/env bash
set -euo pipefail

echo "🔍 Running check (tsc + biome + lint-log-tags)..."
bun run check

echo "🧪 Running tests..."
bun run test

echo "✅ All checks passed!"
