Scaffold: package contract, docker CI gate, Renovate
CI / gate (push) Successful in 7s

This commit is contained in:
2026-08-23 23:49:35 +02:00
parent 8fd20d8601
commit 4398fe580f
14 changed files with 548 additions and 6 deletions
Executable
+10
View File
@@ -0,0 +1,10 @@
#!/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