2d8ccb3eb6
Rename all references from storkit to huskies across the codebase: - .storkit/ directory → .huskies/ - Binary name, Cargo package name, Docker image references - Server code, frontend code, config files, scripts - Fix script/test to build frontend before cargo clippy/test so merge worktrees have frontend/dist available for RustEmbed Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
37 lines
1.1 KiB
Bash
Executable File
37 lines
1.1 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
|
|
PROJECT_ROOT="$(cd "$SCRIPT_DIR/.." && pwd)"
|
|
|
|
echo "=== Building frontend ==="
|
|
if [ -d "$PROJECT_ROOT/frontend" ]; then
|
|
cd "$PROJECT_ROOT/frontend"
|
|
npm install
|
|
npm run build
|
|
cd "$PROJECT_ROOT"
|
|
else
|
|
echo "Skipping frontend build (no frontend directory)"
|
|
fi
|
|
|
|
echo "=== Running cargo clippy ==="
|
|
cargo clippy --manifest-path "$PROJECT_ROOT/Cargo.toml" --all-targets --all-features
|
|
|
|
echo "=== Running Rust tests ==="
|
|
cargo test --manifest-path "$PROJECT_ROOT/Cargo.toml"
|
|
|
|
echo "=== Running frontend unit tests ==="
|
|
if [ -d "$PROJECT_ROOT/frontend" ]; then
|
|
cd "$PROJECT_ROOT/frontend"
|
|
npm test
|
|
else
|
|
echo "Skipping frontend tests (no frontend directory)"
|
|
fi
|
|
|
|
# Disabled: e2e tests may be causing merge pipeline hangs (no running server
|
|
# in merge workspace → Playwright blocks indefinitely). Re-enable once confirmed.
|
|
# Disabled: e2e tests cause merge pipeline hangs (no running server
|
|
# in merge workspace → Playwright blocks indefinitely).
|
|
# echo "=== Running e2e tests ==="
|
|
# npm run test:e2e
|