Adyen Magento 2 Payment Plugin E2E tests #4064
Workflow file for this run
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
name: Magento 2 E2E Pipeline | |
run-name: Adyen Magento 2 Payment Plugin E2E tests | |
on: | |
pull_request: | |
types: [opened, synchronize, ready_for_review] | |
pull_request_target: | |
types: [opened, synchronize, ready_for_review] | |
jobs: | |
build: | |
if: (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository) || (github.event_name == 'pull_request_target' && github.event.pull_request.head.repo.full_name != github.repository) | |
environment: ${{ (github.event_name == 'pull_request_target' && github.event.pull_request.head.repo.full_name != github.repository) && 'external' || 'internal' }} | |
runs-on: | |
group: larger-runners | |
labels: ubuntu-latest-8-cores | |
timeout-minutes: 25 | |
env: | |
PHP_VERSION: "8.1" | |
MAGENTO_VERSION: "2.4.5" | |
ADYEN_API_KEY: ${{secrets.ADYEN_API_KEY}} | |
ADYEN_CLIENT_KEY: ${{secrets.ADYEN_CLIENT_KEY}} | |
ADYEN_MERCHANT: ${{secrets.ADYEN_MERCHANT}} | |
ADMIN_USERNAME: ${{secrets.MAGENTO_ADMIN_USERNAME}} | |
ADMIN_PASSWORD: ${{secrets.MAGENTO_ADMIN_PASSWORD}} | |
DONATION_ACCOUNT: ${{secrets.DONATION_ACCOUNT}} | |
DEPLOY_SAMPLEDATA: 1 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Magento | |
run: docker-compose -f .github/docker-compose.yml run --rm web make magento | |
- name: Start web server in background | |
run: docker-compose -f .github/docker-compose.yml up -d web | |
- name: Setup permissions | |
run: docker exec magento2-container make fs | |
- name: Check install | |
run: docker exec magento2-container make sys-check | |
- name: Install plugin | |
run: docker exec -u www-data magento2-container make plugin | |
- name: Kill Cron Jobs | |
run: docker exec magento2-container /etc/init.d/cron stop | |
- name: Checkout developer module | |
uses: actions/checkout@v3 | |
with: | |
repository: Adyen/adyen-magento2-dev | |
ref: "main" | |
token: ${{ secrets.ADYEN_AUTOMATION_BOT_TEST_ACCESS_TOKEN }} | |
path: Developer | |
- name: Make the folder for dev module | |
run: docker exec -u www-data magento2-container mkdir -p /var/www/html/app/code/Adyen | |
- name: Copy dev module into Docker container | |
run: docker cp ./Developer magento2-container:/var/www/html/app/code/Adyen | |
- name: Change ownership of developer module folder | |
run: docker exec magento2-container chown -R www-data:www-data /var/www/html/app/code/Adyen/Developer | |
- name: Enable developer module | |
run: docker exec -u www-data magento2-container make dev-module | |
- name: Switch to production mode | |
run: docker exec -u www-data magento2-container make production | |
- name: Setup permissions | |
run: docker exec magento2-container make fs | |
- name: Run E2E tests | |
run: docker-compose -f .github/docker-compose.e2e.yml run --rm playwright /e2e.sh standard | |
env: | |
INTEGRATION_TESTS_BRANCH: develop | |
MAGENTO_ADMIN_USERNAME: ${{secrets.MAGENTO_ADMIN_USERNAME}} | |
MAGENTO_ADMIN_PASSWORD: ${{secrets.MAGENTO_ADMIN_PASSWORD}} | |
MAGENTO_BASE_URL: ${{secrets.MAGENTO_BASE_URL}} | |
PAYPAL_USERNAME: ${{secrets.PLAYWRIGHT_PAYPAL_USERNAME}} | |
PAYPAL_PASSWORD: ${{secrets.PLAYWRIGHT_PAYPAL_PASSWORD}} | |
WEBHOOK_USERNAME: admin | |
WEBHOOK_PASSWORD: 1234 | |
- name: Archive test result artifacts | |
if: always() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: html-report | |
path: test-report |