From 9245fe73f47948dc65445bae4b88e378563d02fa Mon Sep 17 00:00:00 2001 From: Dominic Saadi Date: Sat, 20 Jan 2024 08:28:25 -0800 Subject: [PATCH] chore(crwa): set `REDWOOD_CI` and `REDWOOD_DISABLE_TELEMETRY` (#9857) Forgot to set `REDWOOD_CI` and `REDWOOD_DISABLE_TELEMETRY` when I added e2e tests for CRWA in https://github.com/redwoodjs/redwood/pull/9783. It may be better to just set `REDWOOD_CI` at the very top of the workflow file but I wasn't sure if we're testing for its absence sometimes like we do for `REDWOOD_DISABLE_TELEMETRY` I think. --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 03553e30267f..973cc187823f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -811,6 +811,10 @@ jobs: name: 🌲 Create Redwood App runs-on: ubuntu-latest + env: + REDWOOD_CI: 1 + REDWOOD_DISABLE_TELEMETRY: 1 + steps: - uses: actions/checkout@v4