mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-22 19:16:13 +01: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:
parent
ef38d7d84b
commit
73a27f7306
1 changed files with 5 additions and 0 deletions
5
.github/workflows/ci.yml
vendored
5
.github/workflows/ci.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue