10 lines
359 B
Bash
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
|