Files
adf-codec/ci.sh
T
2026-08-23 23:49:35 +02:00

11 lines
217 B
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
cd "$(dirname "$0")"
image=node:24.19.0-alpine3.24
in_node() { docker run --rm -v "$PWD:/app" -w /app "$image" "$@"; }
in_node npm ci
in_node npm run typecheck
in_node npm test