Files
GlowTrack/tools/ci/run-tests.sh
2025-09-18 10:13:45 -06:00

10 lines
359 B
Bash

#!/usr/bin/env bash
set -euo pipefail
echo "[CI] Running typecheck and unit tests (e2e optional)"
pnpm -r --filter @glowtrack/web typecheck || true
pnpm -r --filter @glowtrack/web test:unit || true
pnpm -r --filter @glowtrack/web build
# To run e2e locally with browsers installed, uncomment the line below
# pnpm -r --filter @glowtrack/web test:e2e || true