#!/usr/bin/env bash # Run the repo's local deterministic green-path tests for Chain 138 / GRU transport. # Usage: bash scripts/verify/run-repo-green-test-path.sh set -euo pipefail PROJECT_ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/../.." && pwd)" log() { printf '%s\n' "$*"; } ok() { printf '[OK] %s\n' "$*"; } run_step() { local label="$1" shift log "" log "=== ${label} ===" "$@" } run_step "Config validation" \ bash "$PROJECT_ROOT/scripts/validation/validate-config-files.sh" run_step "Chain 138 package CI targets" \ pnpm --dir "$PROJECT_ROOT/smom-dbis-138" run test:ci log "" ok "Repo green-path tests passed."