generated from bcgov/quickstart-openshift
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into ORV2-3042, fix conflicts
- Loading branch information
Showing
363 changed files
with
26,266 additions
and
33,256 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,111 @@ | ||
name: E2E Regression Tests | ||
|
||
on: | ||
workflow_call: | ||
inputs: | ||
### Required | ||
target: | ||
description: 'PR number, test, uat or prod.' | ||
default: 'test' | ||
required: true | ||
type: string | ||
show_artifact: | ||
description: 'boolean to show artifacts on run (default is on failure)' | ||
default: 'false' | ||
required: true | ||
type: boolean | ||
workflow_dispatch: | ||
inputs: | ||
### Required | ||
target: | ||
description: 'PR number, test, uat or prod.' | ||
default: 'test' | ||
required: true | ||
type: string | ||
show_artifact: | ||
description: 'boolean to show artifacts on run (default is on failure)' | ||
default: 'false' | ||
required: true | ||
type: boolean | ||
|
||
|
||
jobs: | ||
vars: | ||
name: Set Variables | ||
outputs: | ||
target: ${{ steps.env.outputs.target }} | ||
environment: ${{ steps.env.outputs.environment }} | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: env | ||
id: env | ||
run: | | ||
pr="${{inputs.target}}" | ||
if [[ $pr != 'test' && $pr != 'demo' && $pr != 'uat' && $pr != 'prod' ]]; then | ||
target="$pr" | ||
environment="dev" | ||
else | ||
target=${{inputs.target}} | ||
environment=${{inputs.target}} | ||
fi | ||
echo "target=$target" >> $GITHUB_OUTPUT | ||
echo "environment=$environment" >> $GITHUB_OUTPUT | ||
e2e-tests: | ||
name: ${{matrix.test}} | ||
needs: [vars] | ||
environment: ${{needs.vars.outputs.environment}} | ||
runs-on: ubuntu-22.04 | ||
defaults: | ||
run: | ||
working-directory: tests/ | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
browser: | ||
- chrome | ||
#- edge | ||
#- firefox | ||
test: | ||
- 'bceid-crud-power-units.cy.js' | ||
- 'bceid-crud-trailers.cy.js' | ||
- 'bceid-new-term-oversize.cy.js' | ||
- 'bceid-new-term-overweight.cy.js' | ||
- 'bceid-update-term-oversize.cy.js' | ||
- 'idir-amend-term-oversize.cy.js' | ||
- 'idir-void-term-oversize.cy.js' | ||
|
||
timeout-minutes: 10 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: cypress-io/[email protected] | ||
name: Cypress run | ||
env: | ||
CYPRESS_baseUrl: https://${{ github.event.repository.name }}-${{ needs.vars.outputs.target || 'test' }}-frontend.apps.silver.devops.gov.bc.ca/ | ||
CYPRESS_bceid_username: ${{vars.BCEID_USERNAME}} | ||
CYPRESS_bceid_password: ${{secrets.BCEID_PASSWORD}} | ||
CYPRESS_idir_username: ${{vars.IDIR_USERNAME}} | ||
CYPRESS_idir_password: ${{secrets.IDIR_PASSWORD}} | ||
CYPRESS_wait_time: 2000 | ||
with: | ||
browser: ${{ matrix.browser }} | ||
config: pageLoadTimeout=10000,video=true | ||
spec: cypress/e2e/${{matrix.test}} | ||
working-directory: tests | ||
|
||
- uses: actions/upload-artifact@v4 | ||
if: failure() || inputs.show_artifact | ||
with: | ||
name: ${{matrix.test}}-${{matrix.browser}} screenshot | ||
path: tests/cypress/screenshots/ | ||
if-no-files-found: ignore # 'warn' or 'error' are also available, defaults to `warn` | ||
|
||
- uses: actions/upload-artifact@v4 | ||
if: failure() || inputs.show_artifact | ||
with: | ||
name: ${{matrix.test}}-${{matrix.browser}} video | ||
path: tests/cypress/videos/ | ||
overwrite: true | ||
if-no-files-found: ignore # 'warn' or 'error' are also available, defaults to `warn` | ||
|
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,4 +1,4 @@ | ||
name: PR | ||
name: PR Opened | ||
|
||
on: | ||
pull_request: | ||
|
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
Oops, something went wrong.