From 21862657155bcca368525aa4c864f0d7c4fc2f49 Mon Sep 17 00:00:00 2001 From: Javier Tinoco <213990346+javiert-okta@users.noreply.github.com> Date: Thu, 23 Oct 2025 14:36:14 -0500 Subject: [PATCH] fix test command for prod deploys --- .github/workflows/production.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/production.yaml b/.github/workflows/production.yaml index ab6f8cf0..adca8ecb 100644 --- a/.github/workflows/production.yaml +++ b/.github/workflows/production.yaml @@ -28,7 +28,7 @@ jobs: run: npx playwright install --with-deps - name: Run Playwright Tests - run: npx playwright test + run: NODE_OPTIONS="--no-experimental-strip-types" npx playwright test - name: Upload Playwright Traces if: failure()