fix(ci): restore missing k3d cluster step in orchestrator-integrity

A mangled comment merged the "Create k3d cluster" step header with
the previous yarn install step, causing a duplicate `run` key that
prevented the entire Integrity workflow from loading.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
frostebite
2026-03-07 02:35:16 +00:00
parent 54a6c80784
commit 49c3bcf0a5

View File

@@ -221,7 +221,9 @@ jobs:
fi
- run: yarn install --frozen-lockfile
# =================================== timeout-minutes: 5
- name: Create k3d cluster
timeout-minutes: 5
run: |
LOCALSTACK_IP=$(docker inspect -f '{{range.NetworkSettings.Networks}}{{.IPAddress}}{{end}}' localstack-main 2>/dev/null || echo "")
echo "LocalStack container IP: $LOCALSTACK_IP"