Skip to content

fix: older shopware versions #71

fix: older shopware versions

fix: older shopware versions #71

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
workflow_dispatch:
jobs:
mysql-variation:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
mysql:
- builtin
- mysql:8.1
- mariadb:11
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup Shopware
uses: ./.
with:
mysql-version: ${{ matrix.mysql }}
install: 'true'
path: 'sw-test'
only-storefront:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup Shopware
uses: ./.
with:
install: 'true'
installStorefront: 'true'
path: 'sw-test'
only-admin:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup Shopware
uses: ./.
with:
install: 'true'
installAdmin: 'true'
path: 'sw-test'
version-matrix:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
version:
- 'v6.6.4.0'
- 'v6.6.8.3'
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup Shopware
uses: ./.
with:
version: '${{ matrix.version }}'
path: 'sw-test'