From 2787a5ca5d0346cd9d3a5e0d4f7d415a8169de83 Mon Sep 17 00:00:00 2001 From: Asher Date: Wed, 6 May 2026 11:38:07 -0800 Subject: [PATCH] Set debug level for e2e tests --- .github/workflows/build.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 577fcd929..53c822882 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -213,6 +213,8 @@ jobs: test-e2e: name: Run e2e tests runs-on: ubuntu-22.04 + env: + LOG_LEVEL: debug needs: [changes, build] if: needs.changes.outputs.code == 'true' || needs.changes.outputs.deps == 'true' || needs.changes.outputs.ci == 'true' @@ -248,6 +250,7 @@ jobs: runs-on: ubuntu-22.04 env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + LOG_LEVEL: debug needs: [changes, build] if: needs.changes.outputs.code == 'true' || needs.changes.outputs.deps == 'true' || needs.changes.outputs.ci == 'true'