-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Justas Vaitkus
authored and
Justas Vaitkus
committed
Jul 11, 2024
1 parent
ec396ce
commit b47b7fb
Showing
1 changed file
with
15 additions
and
19 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 |
---|---|---|
|
@@ -8,20 +8,13 @@ jobs: | |
env: | ||
NGROK_TOKEN: ${{ secrets.NGROK_TOKEN }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
containers: [1,2,3,4] | ||
fail-fast: false | ||
matrix: | ||
containers: [1,2,3,4] | ||
steps: | ||
- name: Checkouting | ||
uses: actions/[email protected] | ||
|
||
- name: Cypress Cloud GitHub | ||
uses: cypress-io/github-action@v6 | ||
with: | ||
record: true | ||
parallel: true | ||
group: 'QAAutomationLabs' | ||
|
||
- run: wget https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-linux-amd64.zip | ||
shell: bash | ||
- run: unzip -qq -o ngrok-stable-linux-amd64.zip | ||
|
@@ -30,6 +23,7 @@ jobs: | |
shell: bash | ||
- run: ./ngrok http --domain=jusvai.eu.ngrok.io 8002 > ngrok.log & | ||
shell: bash | ||
|
||
- name: Installing composer | ||
run: composer i | ||
|
||
|
@@ -39,22 +33,24 @@ jobs: | |
- name: PS1786 installing / Module Install and Uninstall testing... | ||
run: | | ||
make e2eh1786 | ||
- name: Testing with E2E Cypress on PS1786 | ||
uses: cypress-io/[email protected] | ||
with: | ||
spec: | | ||
cypress/e2e/moduleConfig.cy.js | ||
- name: Cypress E2E Tests | ||
uses: cypress-io/github-action@v6 | ||
with: | ||
record: true | ||
parallel: true | ||
group: 'SaferpayTests' | ||
spec: cypress/e2e/moduleConfig.cy.js | ||
env: | ||
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }} | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}cy.contains('a','Home').should('have.attr', 'href', '/home') | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
CYPRESS_SAFERPAY_USERNAME_TEST: ${{ secrets.PS1786_SAFERPAY_USERNAME_TEST }} | ||
CYPRESS_SAFERPAY_PASSWORD_TEST: ${{ secrets.PS1786_SAFERPAY_PASSWORD_TEST }} | ||
CYPRESS_SAFERPAY_CUSTOMER_ID_TEST: ${{ secrets.PS1786_SAFERPAY_CUSTOMER_ID_TEST }} | ||
CYPRESS_SAFERPAY_TERMINAL_ID_TEST: ${{ secrets.PS1786_SAFERPAY_TERMINAL_ID_TEST }} | ||
CYPRESS_SAFERPAY_MERCHANT_EMAILS_TEST: ${{ secrets.SAFERPAY_MERCHANT_EMAILS_TEST }} | ||
CYPRESS_SAFERPAY_FIELDS_ACCESS_TOKEN_TEST: ${{ secrets.PS1786_SAFERPAY_FIELDS_ACCESS_TOKEN_TEST }} | ||
|
||
- name: Archive videos and screenshots of Cypress testing | ||
if: ${{ always() }} | ||
uses: actions/[email protected] | ||
|
@@ -63,4 +59,4 @@ jobs: | |
retention-days: 2 | ||
path: | | ||
cypress/videos | ||
cypress/screenshots | ||
cypress/screenshots |