#!/bin/sh
set -e

echo "Running pre-commit checks..."

echo "Linting..."
bun run lint

echo "Type checking..."
bun run typecheck

echo "Running tests..."
bun run test

echo "All checks passed!"
