From 926b8abad27b9f9d93f045a246ed222662abff13 Mon Sep 17 00:00:00 2001 From: Parker Brown <17183625+parkerbxyz@users.noreply.github.com> Date: Fri, 22 Aug 2025 12:29:23 -0700 Subject: [PATCH] Set NODE_USE_ENV_PROXY in test workflow Adds NODE_USE_ENV_PROXY=1 to the test job environment in GitHub Actions to enable proxy usage via environment variable. --- .github/workflows/test.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1bf7b18..cf89240 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -45,6 +45,7 @@ jobs: - uses: ./ # Uses the action in the root directory id: test env: + NODE_USE_ENV_PROXY: 1 https_proxy: https://example.com with: app-id: ${{ vars.TEST_APP_ID }}