#!/usr/bin/env bash
set -euo pipefail

repo_root="$(cd "$(dirname "${BASH_SOURCE[0]}")/../.." && pwd)"
cd "$repo_root/ai/runtime"

../../node_modules/.bin/tsc -p tsconfig.json --noEmit
../../node_modules/.bin/tsc -p tsconfig.json
node test/runtime-path-harness-test.mjs
node test/shell-facades-test.mjs
