diff --git a/.github/workflows/example-chrome.yml b/.github/workflows/example-chrome.yml index 415dd915d..3d7d5880a 100644 --- a/.github/workflows/example-chrome.yml +++ b/.github/workflows/example-chrome.yml @@ -66,7 +66,7 @@ jobs: with: working-directory: examples/v9/chrome browser: chrome - headed: true + headless: false - uses: actions/upload-artifact@v2 with: diff --git a/README.md b/README.md index 73b348002..25bec1f01 100644 --- a/README.md +++ b/README.md @@ -151,7 +151,7 @@ jobs: ### Headed -Run the browser in headed mode - as of Cypress v8.0 the `cypress run` executes tests in `headless` mode by default +Run the browser in headed or headless mode - as of Cypress v8.0 the `cypress run` command executes tests in `headless` mode by default ```yml name: Chrome headed @@ -164,7 +164,7 @@ jobs: - uses: cypress-io/github-action@v4 with: browser: chrome - headed: true + headless: false ``` ### Docker image diff --git a/action.yml b/action.yml index c55c34019..f0e4c7780 100644 --- a/action.yml +++ b/action.yml @@ -59,7 +59,7 @@ inputs: working-directory: description: 'Working directory containing Cypress folder' required: false - headed: + headless: description: 'Whether or not to use headless mode' required: false spec: