mirror of
https://github.com/Permissionless-Software-Foundation/psf-memo.git
synced 2026-09-21 16:52:01 -07:00
Verification commands were transcribed in several places and the same full suite was re-run by every role. Add verify.sh/verify.mjs as the single per-component verification sequence emitting a machine-readable record (git_sha, per-command exit/duration/summary). The architect records it for each touched component; the specifier trusts a matching-SHA pass and only re-runs the merged feature's acceptance test. By specifier.
7 lines
191 B
Bash
Executable File
7 lines
191 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Thin wrapper for the canonical per-component verification runner.
|
|
set -euo pipefail
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
|
|
exec node "$SCRIPT_DIR/verify.mjs" "$@"
|