mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-11-22 14:36:12 +01:00

[CLEANUP] Always have the CI job name as first element (#391)

This helps human readers see what a job is about more quickly,
following the principle of having the heading as the first element
of a text.
This commit is contained in:
Oliver Klee 2022-02-24 09:11:49 +01:00 committed by GitHub
parent 79ba5f20d2
commit 4854d9983a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 24 additions and 24 deletions

View file

@ -119,19 +119,19 @@ jobs:
key: "php${{ matrix.php-version }}-composer-${{ hashFiles('**/composer.json') }}"
path: ~/.cache/composer
restore-keys: "php${{ matrix.php-version }}-composer-\n"
- env:
- name: "Install TYPO3 Core"
env:
TYPO3: "${{ matrix.typo3-version }}"
name: "Install TYPO3 Core"
run: |
composer require --no-ansi --no-interaction --no-progress --no-install typo3/minimal:"$TYPO3"
composer show
- if: "matrix.composer-dependencies == 'lowest'"
name: "Install lowest dependencies with composer"
- name: "Install lowest dependencies with composer"
if: "matrix.composer-dependencies == 'lowest'"
run: |
composer update --no-ansi --no-interaction --no-progress --with-dependencies --prefer-lowest
composer show
- if: "matrix.composer-dependencies == 'highest'"
name: "Install highest dependencies with composer"
- name: "Install highest dependencies with composer"
if: "matrix.composer-dependencies == 'highest'"
run: |
composer update --no-ansi --no-interaction --no-progress --with-dependencies
composer show
@ -199,19 +199,19 @@ jobs:
key: "php${{ matrix.php-version }}-composer-${{ hashFiles('**/composer.json') }}"
path: ~/.cache/composer
restore-keys: "php${{ matrix.php-version }}-composer-\n"
- env:
- name: "Install TYPO3 Core"
env:
TYPO3: "${{ matrix.typo3-version }}"
name: "Install TYPO3 Core"
run: |
composer require --no-ansi --no-interaction --no-progress --no-install typo3/minimal:"$TYPO3"
composer show
- if: "matrix.composer-dependencies == 'lowest'"
name: "Install lowest dependencies with composer"
- name: "Install lowest dependencies with composer"
if: "matrix.composer-dependencies == 'lowest'"
run: |
composer update --no-ansi --no-interaction --no-progress --with-dependencies --prefer-lowest
composer show
- if: "matrix.composer-dependencies == 'highest'"
name: "Install highest dependencies with composer"
- name: "Install highest dependencies with composer"
if: "matrix.composer-dependencies == 'highest'"
run: |
composer update --no-ansi --no-interaction --no-progress --with-dependencies
composer show

View file

@ -170,19 +170,19 @@ jobs:
key: "php${{ matrix.php-version }}-composer-${{ hashFiles('**/composer.json') }}"
path: ~/.cache/composer
restore-keys: "php${{ matrix.php-version }}-composer-\n"
- env:
- name: "Install TYPO3 Core"
env:
TYPO3: "${{ matrix.typo3-version }}"
name: "Install TYPO3 Core"
run: |
composer require --no-progress typo3/minimal:"$TYPO3"
composer show
- if: "matrix.composer-dependencies == 'lowest'"
name: "Install lowest dependencies with composer"
- name: "Install lowest dependencies with composer"
if: "matrix.composer-dependencies == 'lowest'"
run: |
composer update --no-ansi --no-interaction --no-progress --with-dependencies --prefer-lowest
composer show
- if: "matrix.composer-dependencies == 'highest'"
name: "Install highest dependencies with composer"
- name: "Install highest dependencies with composer"
if: "matrix.composer-dependencies == 'highest'"
run: |
composer update --no-ansi --no-interaction --no-progress --with-dependencies
composer show
@ -223,19 +223,19 @@ jobs:
key: "php${{ matrix.php-version }}-composer-${{ hashFiles('**/composer.json') }}"
path: ~/.cache/composer
restore-keys: "php${{ matrix.php-version }}-composer-\n"
- env:
- name: "Install TYPO3 Core"
env:
TYPO3: "${{ matrix.typo3-version }}"
name: "Install TYPO3 Core"
run: |
composer require --no-progress typo3/minimal:"$TYPO3"
composer show
- if: "matrix.composer-dependencies == 'lowest'"
name: "Install lowest dependencies with composer"
- name: "Install lowest dependencies with composer"
if: "matrix.composer-dependencies == 'lowest'"
run: |
composer update --no-ansi --no-interaction --no-progress --with-dependencies --prefer-lowest
composer show
- if: "matrix.composer-dependencies == 'highest'"
name: "Install highest dependencies with composer"
- name: "Install highest dependencies with composer"
if: "matrix.composer-dependencies == 'highest'"
run: |
composer update --no-ansi --no-interaction --no-progress --with-dependencies
composer show