-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
USAGOV-2050-Cypress-Github-Actions: Github Actions Files
- Loading branch information
1 parent
6bbac64
commit 9851dfb
Showing
4 changed files
with
3,237 additions
and
0 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,16 @@ | ||
name: Prod A11Y Regression Tests | ||
on: workflow_dispatch | ||
jobs: | ||
run-regression-tests: | ||
name: run-regression-tests | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Set env | ||
run: echo "CYPRESS_BASE_URL=https://usa.gov/" >> $GITHUB_ENV | ||
- name: Cypress run | ||
uses: cypress-io/github-action@v6 | ||
with: | ||
working-directory: automated_tests/e2e-cypress | ||
spec: cypress/e2e/regression_testing/*.cy.js |
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,16 @@ | ||
name: Stage A11Y Regression Tests | ||
on: workflow_dispatch | ||
jobs: | ||
run-regression-tests: | ||
name: run-regression-tests | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Set env | ||
run: echo "CYPRESS_BASE_URL=https://beta-stage.usa.gov/" >> $GITHUB_ENV | ||
- name: Cypress run | ||
uses: cypress-io/github-action@v6 | ||
with: | ||
working-directory: automated_tests/e2e-cypress | ||
spec: cypress/e2e/regression_testing/*.cy.js |
Oops, something went wrong.