mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-26 13:36:13 +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:
parent
79ba5f20d2
commit
4854d9983a
2 changed files with 24 additions and 24 deletions
24
.github/workflows/ci.yml
vendored
24
.github/workflows/ci.yml
vendored
|
@ -119,19 +119,19 @@ jobs:
|
||||||
key: "php${{ matrix.php-version }}-composer-${{ hashFiles('**/composer.json') }}"
|
key: "php${{ matrix.php-version }}-composer-${{ hashFiles('**/composer.json') }}"
|
||||||
path: ~/.cache/composer
|
path: ~/.cache/composer
|
||||||
restore-keys: "php${{ matrix.php-version }}-composer-\n"
|
restore-keys: "php${{ matrix.php-version }}-composer-\n"
|
||||||
- env:
|
- name: "Install TYPO3 Core"
|
||||||
|
env:
|
||||||
TYPO3: "${{ matrix.typo3-version }}"
|
TYPO3: "${{ matrix.typo3-version }}"
|
||||||
name: "Install TYPO3 Core"
|
|
||||||
run: |
|
run: |
|
||||||
composer require --no-ansi --no-interaction --no-progress --no-install typo3/minimal:"$TYPO3"
|
composer require --no-ansi --no-interaction --no-progress --no-install typo3/minimal:"$TYPO3"
|
||||||
composer show
|
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: |
|
run: |
|
||||||
composer update --no-ansi --no-interaction --no-progress --with-dependencies --prefer-lowest
|
composer update --no-ansi --no-interaction --no-progress --with-dependencies --prefer-lowest
|
||||||
composer show
|
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: |
|
run: |
|
||||||
composer update --no-ansi --no-interaction --no-progress --with-dependencies
|
composer update --no-ansi --no-interaction --no-progress --with-dependencies
|
||||||
composer show
|
composer show
|
||||||
|
@ -199,19 +199,19 @@ jobs:
|
||||||
key: "php${{ matrix.php-version }}-composer-${{ hashFiles('**/composer.json') }}"
|
key: "php${{ matrix.php-version }}-composer-${{ hashFiles('**/composer.json') }}"
|
||||||
path: ~/.cache/composer
|
path: ~/.cache/composer
|
||||||
restore-keys: "php${{ matrix.php-version }}-composer-\n"
|
restore-keys: "php${{ matrix.php-version }}-composer-\n"
|
||||||
- env:
|
- name: "Install TYPO3 Core"
|
||||||
|
env:
|
||||||
TYPO3: "${{ matrix.typo3-version }}"
|
TYPO3: "${{ matrix.typo3-version }}"
|
||||||
name: "Install TYPO3 Core"
|
|
||||||
run: |
|
run: |
|
||||||
composer require --no-ansi --no-interaction --no-progress --no-install typo3/minimal:"$TYPO3"
|
composer require --no-ansi --no-interaction --no-progress --no-install typo3/minimal:"$TYPO3"
|
||||||
composer show
|
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: |
|
run: |
|
||||||
composer update --no-ansi --no-interaction --no-progress --with-dependencies --prefer-lowest
|
composer update --no-ansi --no-interaction --no-progress --with-dependencies --prefer-lowest
|
||||||
composer show
|
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: |
|
run: |
|
||||||
composer update --no-ansi --no-interaction --no-progress --with-dependencies
|
composer update --no-ansi --no-interaction --no-progress --with-dependencies
|
||||||
composer show
|
composer show
|
||||||
|
|
24
.github/workflows/predefined.yml
vendored
24
.github/workflows/predefined.yml
vendored
|
@ -170,19 +170,19 @@ jobs:
|
||||||
key: "php${{ matrix.php-version }}-composer-${{ hashFiles('**/composer.json') }}"
|
key: "php${{ matrix.php-version }}-composer-${{ hashFiles('**/composer.json') }}"
|
||||||
path: ~/.cache/composer
|
path: ~/.cache/composer
|
||||||
restore-keys: "php${{ matrix.php-version }}-composer-\n"
|
restore-keys: "php${{ matrix.php-version }}-composer-\n"
|
||||||
- env:
|
- name: "Install TYPO3 Core"
|
||||||
|
env:
|
||||||
TYPO3: "${{ matrix.typo3-version }}"
|
TYPO3: "${{ matrix.typo3-version }}"
|
||||||
name: "Install TYPO3 Core"
|
|
||||||
run: |
|
run: |
|
||||||
composer require --no-progress typo3/minimal:"$TYPO3"
|
composer require --no-progress typo3/minimal:"$TYPO3"
|
||||||
composer show
|
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: |
|
run: |
|
||||||
composer update --no-ansi --no-interaction --no-progress --with-dependencies --prefer-lowest
|
composer update --no-ansi --no-interaction --no-progress --with-dependencies --prefer-lowest
|
||||||
composer show
|
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: |
|
run: |
|
||||||
composer update --no-ansi --no-interaction --no-progress --with-dependencies
|
composer update --no-ansi --no-interaction --no-progress --with-dependencies
|
||||||
composer show
|
composer show
|
||||||
|
@ -223,19 +223,19 @@ jobs:
|
||||||
key: "php${{ matrix.php-version }}-composer-${{ hashFiles('**/composer.json') }}"
|
key: "php${{ matrix.php-version }}-composer-${{ hashFiles('**/composer.json') }}"
|
||||||
path: ~/.cache/composer
|
path: ~/.cache/composer
|
||||||
restore-keys: "php${{ matrix.php-version }}-composer-\n"
|
restore-keys: "php${{ matrix.php-version }}-composer-\n"
|
||||||
- env:
|
- name: "Install TYPO3 Core"
|
||||||
|
env:
|
||||||
TYPO3: "${{ matrix.typo3-version }}"
|
TYPO3: "${{ matrix.typo3-version }}"
|
||||||
name: "Install TYPO3 Core"
|
|
||||||
run: |
|
run: |
|
||||||
composer require --no-progress typo3/minimal:"$TYPO3"
|
composer require --no-progress typo3/minimal:"$TYPO3"
|
||||||
composer show
|
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: |
|
run: |
|
||||||
composer update --no-ansi --no-interaction --no-progress --with-dependencies --prefer-lowest
|
composer update --no-ansi --no-interaction --no-progress --with-dependencies --prefer-lowest
|
||||||
composer show
|
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: |
|
run: |
|
||||||
composer update --no-ansi --no-interaction --no-progress --with-dependencies
|
composer update --no-ansi --no-interaction --no-progress --with-dependencies
|
||||||
composer show
|
composer show
|
||||||
|
|
Loading…
Reference in a new issue