You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Specify the expose argument with `expose` parameter. Expose variables are for non-sensitive, public config values that are synchronous and exposed to the browser (requires Cypress 15.10.0 or later).
365
+
366
+
```yml
367
+
name: Cypress tests
368
+
on: push
369
+
jobs:
370
+
cypress-run:
371
+
runs-on: ubuntu-24.04
372
+
steps:
373
+
- name: Checkout
374
+
uses: actions/checkout@v6
375
+
376
+
- name: Cypress run with expose
377
+
uses: cypress-io/github-action@v7
378
+
with:
379
+
expose: host=api.dev.local,port=4222
380
+
```
381
+
382
+
For more information, see [Cypress.expose()](https://docs.cypress.io/api/cypress-api/expose) in the Cypress documentation.
0 commit comments