Skip to content

Commit

Permalink
Solving E2E pipeline failure
Browse files Browse the repository at this point in the history
  • Loading branch information
khushboo-singhvi committed Sep 3, 2024
1 parent 4d8e346 commit aba46ee
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/e2e-test.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: E2E Test
run-name: Headless E2E tests for Adyen Shopware Plugin

on:
on:
pull_request:
workflow_dispatch:

Expand All @@ -20,6 +20,11 @@ jobs:
- name: Clone Code
uses: actions/checkout@v2

- name: Install Docker Compose
run: |
sudo apt-get update
sudo apt-get install -y docker-compose
- name: Initiate Dockware
run: |
docker pull dockware/dev:latest
Expand All @@ -38,7 +43,7 @@ jobs:
- name: Install/Configure Plugin
run: |
docker exec shopware6 bash -c "composer config --json repositories.local '{\"type\": \"path\", \"url\": \"/data/extensions/workdir\", \"options\": { \"symlink\": false } }'"
docker exec shopware6 bash -c 'composer require adyen/adyen-shopware6:*@RC'
docker exec shopware6 bash -c 'composer require adyen/adyen-shopware6:*'
docker exec shopware6 bash -c 'php bin/console plugin:refresh'
docker exec shopware6 bash -c 'php bin/console plugin:install AdyenPaymentShopware6 --activate'
docker exec shopware6 bash -c 'php bin/console cache:clear'
Expand Down

0 comments on commit aba46ee

Please sign in to comment.