mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-09-19 23:56:13 +02:00

[TASK] Always run all CI jobs (#205)

Even if a job fails with e.g., a certain PHP version, we still want to
know if it succeeds with which other PHP versions.
This commit is contained in:
Oliver Klee 2021-02-24 12:24:52 +01:00 committed by GitHub
parent ef38d7d84b
commit 73a27f7306
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -23,6 +23,7 @@ jobs:
- name: "Run PHP lint"
run: "composer ci:php:lint"
strategy:
fail-fast: false
matrix:
php-version:
- 7.2
@ -53,6 +54,7 @@ jobs:
- name: "Run command"
run: "composer ci:${{ matrix.command }}"
strategy:
fail-fast: false
matrix:
command:
- "ts:lint"
@ -68,6 +70,7 @@ jobs:
name: "Code quality frontend checks"
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
command:
- "style"
@ -134,6 +137,7 @@ jobs:
- name: "Run unit tests"
run: "composer ci:tests:unit"
strategy:
fail-fast: false
matrix:
composer-dependencies:
- highest
@ -193,6 +197,7 @@ jobs:
export typo3DatabasePassword="root";
composer ci:tests:functional
strategy:
fail-fast: false
matrix:
composer-dependencies:
- highest