Shopware 6.5.5.2, PHP 8.2 #45
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: E2E Playground | |
run-name: Shopware ${{ github.event.inputs.swVersion }}, PHP ${{ github.event.inputs.phpVersion }} | |
on: | |
workflow_dispatch: | |
inputs: | |
swVersion: | |
description: 'Shopware Version' | |
required: true | |
phpVersion: | |
description: 'PHP Version' | |
required: true | |
jobs: | |
build: | |
name: Build Plugin | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone Code | |
uses: actions/checkout@v3 | |
- name: Create Cache Directories | |
run: | | |
mkdir -p ~/.build | |
- name: Mount Build Cache | |
uses: actions/cache@v3 | |
with: | |
key: cache-plugin-${{ github.run_id }} | |
path: ~/.build | |
- name: Build Plugin | |
uses: ./.github/actions/build-plugin | |
e2e: | |
name: E2E Tests | Shopware ${{ github.event.inputs.swVersion }}, PHP ${{ github.event.inputs.phpVersion }} | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone Code | |
uses: actions/checkout@v3 | |
- name: Mount Build Cache | |
id: cache-build | |
uses: actions/cache@v3 | |
with: | |
key: cache-plugin-${{ github.run_id }} | |
path: ~/.build | |
- name: E2E Tests, Shopware ${{ github.event.inputs.swVersion }} | |
uses: ./.github/actions/run-e2e | |
with: | |
# ------------------------------------------- | |
SHOPWARE: ${{ github.event.inputs.swVersion }} | |
PHP: ${{ github.event.inputs.phpVersion }} | |
# ------------------------------------------- | |
RUN_CYPRESS: true | |
MOLLIE_APIKEY_TEST: ${{ secrets.MOLLIE_APIKEY_TEST }} | |
# ------------------------------------------- | |
TESTRAIL: false |