Sets CI environment variable for Docker container
Ensures the `CI` environment variable is set to `true` when creating the Docker container. This ensures proper behavior for Playwright tests running in continuous integration environments.
This commit is contained in:
parent
4a045c6847
commit
1f96ce255b
1 changed files with 1 additions and 0 deletions
|
|
@ -252,6 +252,7 @@ jobs:
|
|||
export JIRA_CARD_NUMBER="$JIRA_CARD_NUMBER"
|
||||
container_id=$(docker create \
|
||||
--ipc=host \
|
||||
--env CI=true \
|
||||
--env-file "${{ parameters.envFileName }}" \
|
||||
${{ parameters.dockerImageName }}:${{ parameters.imageTag }} \
|
||||
bash -c "
|
||||
|
|
|
|||
Loading…
Reference in a new issue