#!/bin/bash set -e echo "๐Ÿ” Running all checks..." echo "========================================" echo "" echo "๐Ÿ“ฆ Installing dependencies..." pnpm install echo "" echo "๐Ÿ”Ž Running ESLint..." pnpm lint echo "" echo "๐Ÿ’… Running Prettier check..." pnpm format:check echo "" echo "๐Ÿ—๏ธ Building frontend..." pnpm build echo "" echo "๐Ÿงช Running frontend tests..." pnpm test echo "" echo "๐Ÿฆ€ Running Clippy..." cd src-tauri cargo clippy --all-targets --all-features -- -D warnings echo "" echo "๐Ÿงช Running Rust tests..." cargo test cd .. echo "" echo "========================================" echo "โœ… All checks passed!"