Skip to content

Commit 2b05fc3

Browse files
committed
Fix env vars
1 parent 7afd697 commit 2b05fc3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,12 +70,12 @@ jobs:
7070
setUpCmd: |
7171
export SELENIUM_BROWSER=firefox
7272
export SELENIUM_VERSION=2.53.1
73-
export SELENIUM_IMAGE=selenium/standalone-$SELENIUM_BROWSER:$SELENIUM_VERSION
73+
export SELENIUM_IMAGE=selenium/standalone-\$SELENIUM_BROWSER:\$SELENIUM_VERSION
7474
docker compose up --wait --quiet-pull
7575
curl --retry 5 --retry-all-errors --retry-delay 1 --max-time 10 --head -X GET http://localhost:4444/wd/hub/status
7676
# language=bash
7777
testCmd: |
78-
export WEB_FIXTURES_BROWSER=$SELENIUM_BROWSER
78+
export WEB_FIXTURES_BROWSER=\$SELENIUM_BROWSER
7979
export DRIVER_MACHINE_BASE_PATH=/fixtures/
8080
export WEB_FIXTURES_HOST=http://host.docker.internal:8002
8181
./vendor/bin/phpunit --colors=always --testdox

0 commit comments

Comments
 (0)