Files
geointel/scripts/run_rc9_ux_audit.sh
T
Jens faeb58ef6d
GeoIntel release gates / Compile, test, contracts and builds (push) Successful in 1m49s
GeoIntel release gates / Python and npm vulnerability policy (push) Successful in 21s
GeoIntel release gates / Production AI image, SBOM and container scan (push) Successful in 5m39s
GeoIntel release gates / Deploy exact gated revision to Unraid (push) Failing after 58m43s
Initial public release
2026-08-31 21:56:53 +02:00

18 lines
430 B
Bash

#!/usr/bin/env bash
set -euo pipefail
ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
cd "$ROOT"
BASE_URL="${1:-${GE_INTEL_BASE_URL:-http://127.0.0.1:1202}}"
OUTPUT_DIR="${2:-artifacts/rc9-ux-audit}"
if ! command -v npm >/dev/null 2>&1; then
echo "Node.js/npm is required to execute the RC9 UX audit." >&2
exit 2
fi
npm --prefix frontend run test:e2e:ux -- \
--base-url "$BASE_URL" \
--output "../$OUTPUT_DIR"