Added debugging
Some checks failed
Test Renovate Config / test-renovate (pull_request) Successful in 52s
Test Renovate Config / e2e-renovate (pull_request) Failing after 1m43s

This commit is contained in:
2025-11-22 15:12:38 +01:00
parent 61bf6f74e1
commit 0cfc699af7

View File

@@ -6,9 +6,18 @@ renovate-config-validator
echo "Running Renovate E2E (no dry-run)..."
# Capture output but also stream it to stdout for debugging
set +e
renovate > renovate-e2e-output.log 2>&1
RENOVATE_EXIT_CODE=$?
set -e
cat renovate-e2e-output.log
if [ $RENOVATE_EXIT_CODE -ne 0 ]; then
echo "Error: Renovate command failed with exit code $RENOVATE_EXIT_CODE"
exit 1
fi
# Assertions
echo "Checking for successful run..."
if ! grep -q "Repository finished" renovate-e2e-output.log; then