From d988c9aaad89a513d1db151888a2911fba5917c8 Mon Sep 17 00:00:00 2001 From: Parker Brown <17183625+parkerbxyz@users.noreply.github.com> Date: Fri, 22 Aug 2025 12:24:32 -0700 Subject: [PATCH] ci(test): set https_proxy env for test workflow Adds the https_proxy environment variable to the test job in the GitHub Actions workflow to route requests through the specified proxy. --- .github/workflows/test.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 762de81..1bf7b18 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -44,6 +44,8 @@ jobs: - run: npm run build - uses: ./ # Uses the action in the root directory id: test + env: + https_proxy: https://example.com with: app-id: ${{ vars.TEST_APP_ID }} private-key: ${{ secrets.TEST_APP_PRIVATE_KEY }}