ci: Exclude test controller in CI by default (#18136)

This commit is contained in:
shortstacked
2025-08-11 09:05:35 +01:00
committed by GitHub
parent 31af6d11bb
commit 45a7175074
2 changed files with 15 additions and 0 deletions

View File

@@ -49,6 +49,8 @@ jobs:
with:
build-command: ${{ inputs.test-mode == 'docker-build' && 'pnpm build:docker' || 'pnpm turbo build:playwright' }}
enable-docker-cache: ${{ inputs.test-mode != 'local' }}
env:
INCLUDE_TEST_CONTROLLER: ${{ inputs.test-mode == 'docker-build' && 'true' || '' }}
- name: Install Browsers (Docker Build)
if: inputs.test-mode == 'docker-build'