Name the build in milestone 5, run CI containers as the host user
CI / gate (push) Successful in 7s

This commit is contained in:
2026-08-23 23:55:13 +02:00
parent 4398fe580f
commit a5f87e4204
2 changed files with 7 additions and 4 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ 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() { docker run --rm -u "$(id -u):$(id -g)" -e HOME=/tmp -v "$PWD:/app" -w /app "$image" "$@"; }
in_node npm ci
in_node npm run typecheck