From fd577dc0d0ad826b9a9fed6e08c9fd6b82bc2d99 Mon Sep 17 00:00:00 2001 From: "devsy-app[bot]" <277138668+devsy-app[bot]@users.noreply.github.com> Date: Mon, 10 Aug 2026 12:31:17 +0000 Subject: [PATCH] ci: verify all devcontainer features --- .github/workflows/devcontainer.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/devcontainer.yml b/.github/workflows/devcontainer.yml index dc6fa9940..c6c4d7723 100644 --- a/.github/workflows/devcontainer.yml +++ b/.github/workflows/devcontainer.yml @@ -16,13 +16,13 @@ on: runCmd: description: "Command to run inside the devcontainer" required: false - default: test -x "$(command -v prek)" + default: for c in task prek uv node; do command -v "$c" >/dev/null 2>&1 || { echo "missing $c" >&2; exit 1; }; done permissions: contents: read env: - DEFAULT_RUN_CMD: test -x "$(command -v prek)" + DEFAULT_RUN_CMD: for c in task prek uv node; do command -v "$c" >/dev/null 2>&1 || { echo "missing $c" >&2; exit 1; }; done jobs: build: