Skip to content

Commit

Permalink
Use single quotes for base URL in playwright.ymml
Browse files Browse the repository at this point in the history
  • Loading branch information
alexgibson committed Jun 19, 2024
1 parent 14d9ea1 commit 5971c5e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ on:

jobs:
notify-of-test-run-start:
if: github.repository == "mozilla/bedrock"
if: github.repository == 'mozilla/bedrock'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -35,7 +35,7 @@ jobs:
runs-on: ubuntu-latest
needs: notify-of-test-run-start
env:
PLAYWRIGHT_BASE_URL: ${{ github.event.inputs.mozorg_service_hostname || "https://dev.bedrock.nonprod.webservices.mozgcp.net/" }}
PLAYWRIGHT_BASE_URL: ${{ github.event.inputs.mozorg_service_hostname || 'https://dev.bedrock.nonprod.webservices.mozgcp.net/' }}
CI: true
CI_JOB_ID: ${{ github.run_id }}
DRIVER: ""
Expand All @@ -57,7 +57,7 @@ jobs:
retention-days: 30

notify-of-test-run-completion:
if: github.repository == "mozilla/bedrock" && always()
if: github.repository == 'mozilla/bedrock' && always()
runs-on: ubuntu-latest
needs: [notify-of-test-run-start, playwright-tests]
steps:
Expand Down

0 comments on commit 5971c5e

Please sign in to comment.