diff --git a/.github/workflows/smoke-tests.yml b/.github/workflows/smoke-tests.yml index 3efa7a7..2661a8f 100644 --- a/.github/workflows/smoke-tests.yml +++ b/.github/workflows/smoke-tests.yml @@ -16,7 +16,8 @@ jobs: - uses: actions/checkout@v2 - name: Setup Cluster run: | - kind delete cluster 2>/dev/null + set -x + kind delete cluster || true kind create cluster kubectl get nodes - name: Deploy From Source @@ -40,6 +41,7 @@ jobs: - name: Smoke Test timeout-minutes: 5 run: | + set -x RESULT=" " while [[ "$RESULT" != " HTTP/1.1 200 OK" ]]; do sleep 1