Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 27 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ jobs:
extensions: mbstring, intl, pdo_sqlite
tools: composer:v2

- name: Composer install
run: composer install --ignore-platform-reqs --no-interaction
- name: Composer update (highest)
run: composer update --ignore-platform-reqs --no-interaction --prefer-stable

- name: Prepare TYPO3 extension path
run: |
Expand All @@ -42,6 +42,31 @@ jobs:
typo3DatabaseName: typo3
run: vendor/bin/phpunit -c .github/phpunit.functional.xml

functional-tests-lowest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- uses: shivammathur/setup-php@v2
with:
php-version: '8.4'
extensions: mbstring, intl, pdo_sqlite
tools: composer:v2

- name: Composer update (lowest)
run: composer update --ignore-platform-reqs --no-interaction --prefer-lowest --prefer-stable

- name: Prepare TYPO3 extension path
run: |
mkdir -p public/typo3conf/ext/
if [ ! -L public/typo3conf/ext/webcomponents ]; then ln -snvf ../../../. public/typo3conf/ext/webcomponents; fi

- name: Functional Tests (lowest)
env:
typo3DatabaseDriver: pdo_sqlite
typo3DatabaseName: typo3
run: vendor/bin/phpunit -c .github/phpunit.functional.xml

phpstan:
runs-on: ubuntu-latest
steps:
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
},
"require": {
"ext-json": "*",
"typo3/cms-core": "^13.4",
"typo3/cms-frontend": "^13.4"
"typo3/cms-core": "^13.4 || ^14.0",
"typo3/cms-frontend": "^13.4 || ^14.0"
},
"require-dev": {
"phpstan/phpstan": "^2.1",
Expand Down