Skip to content

[BUGFIX] Make style drop-down work with images #195

[BUGFIX] Make style drop-down work with images

[BUGFIX] Make style drop-down work with images #195

Workflow file for this run

name: FunctionalTests
on: [push, pull_request]
jobs:
testsuite:
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ubuntu-latest]
php-version: ['8.1', '8.2', '8.3']
core-version: ['12', '13']
db: ['mariadb', 'postgres']
exclude:
- php-version: '8.1'
core-version: '13'
name: TYPO3 v${{ matrix.core-version }} with PHP ${{ matrix.php-version }}
steps:
- uses: shivammathur/setup-php@master
with:
php-version: ${{ matrix.php-version }}
extensions: json,intl,mbstring
- name: Checkout repository
uses: actions/checkout@v4
- name: Install testing system
run: Build/Scripts/runTests.sh -p ${{ matrix.php-version }} -t ${{ matrix.core-version }} -s composerInstallHighest
- name: Functional Tests
run: Build/Scripts/runTests.sh -p ${{ matrix.php-version }} -t ${{ matrix.core-version }} -s functional -d ${{matrix.db}}