Skip to content

Added Integration-Example: Authorisation Adjustment #213

Added Integration-Example: Authorisation Adjustment

Added Integration-Example: Authorisation Adjustment #213

Workflow file for this run

name: E2E Testing Suite (Playwright)
on:
workflow_dispatch:
push:
paths-ignore:
- '**/readme.md'
- .gitignore
- .gitpod.yml
- LICENSE
branches: [ main ]
pull_request:
paths-ignore:
- '**/readme.md'
- .gitignore
- .gitpod.yml
- LICENSE
branches: [ main ]
jobs:
checkout:
runs-on: ubuntu-latest
steps:
- name: Checkout project
uses: actions/checkout@v3
- name: Build checkout-example image
run: docker build -t checkout-example-image:latest checkout-example
- name: Start checkout-example container
run: docker run --rm -d --name checkout-example-image -p 8080:80 -e ADYEN_API_KEY="${{ secrets.ADYEN_API_KEY }}" -e ADYEN_MERCHANT_ACCOUNT=${{ secrets.ADYEN_MERCHANT_ACCOUNT }} -e ADYEN_CLIENT_KEY=${{ secrets.ADYEN_CLIENT_KEY }} -e ADYEN_HMAC_KEY=${{ secrets.ADYEN_HMAC_KEY }} checkout-example-image:latest
- name: Run testing suite against checkout-example-image
run: docker run --rm --name adyen-testing-suite -e PLAYWRIGHT_FOLDERNAME=checkout --network host ghcr.io/adyen-examples/adyen-testing-suite:main
checkout-advanced:
runs-on: ubuntu-latest
steps:
- name: Checkout Advanced project
uses: actions/checkout@v3
- name: Build checkout-example-advanced image
run: docker build -t checkout-example-advanced-image:latest checkout-example-advanced
- name: Start checkout-example-advanced container
run: docker run --rm -d --name checkout-example-advanced-image -p 8080:80 -e ADYEN_API_KEY="${{ secrets.ADYEN_API_KEY }}" -e ADYEN_MERCHANT_ACCOUNT=${{ secrets.ADYEN_MERCHANT_ACCOUNT }} -e ADYEN_CLIENT_KEY=${{ secrets.ADYEN_CLIENT_KEY }} -e ADYEN_HMAC_KEY=${{ secrets.ADYEN_HMAC_KEY }} checkout-example-advanced-image:latest
- name: Run testing suite against checkout-example-advanced-image
run: docker run --rm --name adyen-testing-suite -e PLAYWRIGHT_FOLDERNAME=advanced-checkout --network host ghcr.io/adyen-examples/adyen-testing-suite:main
subscription:
runs-on: ubuntu-latest
steps:
- name: Subscription project
uses: actions/checkout@v3
- name: Build subscription-example image
run: docker build -t subscription-example-image:latest subscription-example
- name: Start subscription-example container
run: docker run --rm -d --name subscription-example-image -p 8080:80 -e ADYEN_API_KEY="${{ secrets.ADYEN_API_KEY }}" -e ADYEN_MERCHANT_ACCOUNT=${{ secrets.ADYEN_MERCHANT_ACCOUNT }} -e ADYEN_CLIENT_KEY=${{ secrets.ADYEN_CLIENT_KEY }} -e ADYEN_HMAC_KEY=${{ secrets.ADYEN_HMAC_KEY }} subscription-example-image:latest
- name: Run testing suite against subscription-example-image
run: docker run --rm --name adyen-testing-suite -e PLAYWRIGHT_FOLDERNAME=subscription --network host ghcr.io/adyen-examples/adyen-testing-suite:main
giftcard:
runs-on: ubuntu-latest
steps:
- name: Gift card project
uses: actions/checkout@v3
- name: Build giftcard-example image
run: docker build -t giftcard-example-image:latest giftcard-example
- name: Start giftcard-example container
run: docker run --rm -d --name giftcard-example-image -p 8080:80 -e ADYEN_API_KEY="${{ secrets.ADYEN_API_KEY }}" -e ADYEN_MERCHANT_ACCOUNT=${{ secrets.ADYEN_MERCHANT_ACCOUNT }} -e ADYEN_CLIENT_KEY=${{ secrets.ADYEN_CLIENT_KEY }} -e ADYEN_HMAC_KEY=${{ secrets.ADYEN_HMAC_KEY }} giftcard-example-image:latest
- name: Run testing suite against giftcard-example-image
run: docker run --rm --name adyen-testing-suite -e PLAYWRIGHT_FOLDERNAME=giftcard --network host ghcr.io/adyen-examples/adyen-testing-suite:main
paybylink:
runs-on: ubuntu-latest
steps:
- name: Pay By Link project
uses: actions/checkout@v3
- name: Build paybylink-example image
run: docker build -t paybylink-example-image:latest paybylink-example
- name: Start paybylink-example container
run: docker run --rm -d --name paybylink-example-image -p 8080:80 -e ADYEN_API_KEY="${{ secrets.ADYEN_API_KEY }}" -e ADYEN_MERCHANT_ACCOUNT=${{ secrets.ADYEN_MERCHANT_ACCOUNT }} -e ADYEN_HMAC_KEY=${{ secrets.ADYEN_HMAC_KEY }} paybylink-example-image:latest
- name: Run testing suite against paybylink-example-image
run: docker run --rm --name adyen-testing-suite -e PLAYWRIGHT_FOLDERNAME=paybylink --network host ghcr.io/adyen-examples/adyen-testing-suite:main