fix: Use correct baseUrl when running in non-public Github instances #2106
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: example-component-test | |
on: | |
push: | |
branches: | |
- 'master' | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
cypress-run: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Cypress run | |
# normally you would write | |
# uses: cypress-io/github-action@v6 | |
uses: ./ | |
with: | |
working-directory: examples/component-tests | |
component: true |