-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changed cypress action to use description
- Loading branch information
1 parent
ddee1a8
commit 769e349
Showing
3 changed files
with
22 additions
and
11 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
on: | ||
workflow_dispatch: | ||
cyp: | ||
pull_request: | ||
branches: | ||
- main | ||
- release | ||
types: | ||
- opened | ||
- reopened | ||
|
||
jobs: | ||
cypress: | ||
runs-on: ubuntu-latest | ||
name: Cypress Test | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Hello world action step | ||
uses: ./.github/workflows/cypress-test-docker/cypress-run.yaml | ||
id: hello |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,5 @@ | ||
# action.yml | ||
name: 'Cypress Docker test' | ||
description: 'Runs cypress in a docker container' | ||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
branches: | ||
- main | ||
- release | ||
types: | ||
- opened | ||
- reopened | ||
runs: | ||
using: 'docker' | ||
image: 'Dockerfile' |