Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .github/workflows/example-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
# replace with the following for regular use:
# uses: cypress-io/github-action@v6
- name: Cypress tests
uses: ./ # if copying, replace with cypress-io/github-action@v6
with:
Expand Down
4 changes: 0 additions & 4 deletions .github/workflows/example-recording.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,6 @@ jobs:
uses: actions/checkout@v4

- name: Cypress tests
# normally you would write
# uses: cypress-io/github-action@v6
uses: ./
# let's give this action an ID so we can refer
# to its output values later
Expand Down Expand Up @@ -84,8 +82,6 @@ jobs:
uses: actions/checkout@v4

- name: Cypress tests
# normally you would write
# uses: cypress-io/github-action@v6
uses: ./
with:
working-directory: examples/recording
Expand Down
8 changes: 1 addition & 7 deletions .github/workflows/example-start-and-pnpm-workspaces.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,7 @@ jobs:
# the root of the pnpm workspace examples/start-and-pnpm-workspaces
# to be installed
# AND it automatically caches the Cypress binary.
#
# If you copy this workflow to another repository replace the following with
# uses: cypress-io/github-action@v6
# The notation ./ is a special usage only used here.
# It causes the version of the action code from whatever branch it is launched in to be used.
# Do not try to use the ./ notation this outside of this repository!
uses: ./ # approximately equivalent to using cypress-io/github-action@v6
uses: ./
with:
working-directory: examples/start-and-pnpm-workspaces
runTests: false
Expand Down