mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 06:36: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"
|
- name: "Run PHP lint"
|
||||||
run: "composer ci:php:lint"
|
run: "composer ci:php:lint"
|
||||||
strategy:
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
php-version:
|
php-version:
|
||||||
- 7.2
|
- 7.2
|
||||||
|
@ -53,6 +54,7 @@ jobs:
|
||||||
- name: "Run command"
|
- name: "Run command"
|
||||||
run: "composer ci:${{ matrix.command }}"
|
run: "composer ci:${{ matrix.command }}"
|
||||||
strategy:
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
command:
|
command:
|
||||||
- "ts:lint"
|
- "ts:lint"
|
||||||
|
@ -68,6 +70,7 @@ jobs:
|
||||||
name: "Code quality frontend checks"
|
name: "Code quality frontend checks"
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-20.04
|
||||||
strategy:
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
command:
|
command:
|
||||||
- "style"
|
- "style"
|
||||||
|
@ -134,6 +137,7 @@ jobs:
|
||||||
- name: "Run unit tests"
|
- name: "Run unit tests"
|
||||||
run: "composer ci:tests:unit"
|
run: "composer ci:tests:unit"
|
||||||
strategy:
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
composer-dependencies:
|
composer-dependencies:
|
||||||
- highest
|
- highest
|
||||||
|
@ -193,6 +197,7 @@ jobs:
|
||||||
export typo3DatabasePassword="root";
|
export typo3DatabasePassword="root";
|
||||||
composer ci:tests:functional
|
composer ci:tests:functional
|
||||||
strategy:
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
composer-dependencies:
|
composer-dependencies:
|
||||||
- highest
|
- highest
|
||||||
|
|
Loading…
Reference in a new issue