mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-09-20 00:16:12 +02:00

[FEATURE] Show the Composer configuration in the CI jobs (#572)

This helps debug problems, e.g., using an incorrect Composer
cache directory.
This commit is contained in:
Oliver Klee 2022-09-21 09:48:16 +02:00 committed by GitHub
parent c5ce5d1ccc
commit 1129d74c53
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -22,6 +22,8 @@ jobs:
php-version: "${{ matrix.php-version }}"
coverage: none
tools: composer:v2.4
- name: "Show the Composer configuration"
run: "composer config --global --list"
- name: "Run PHP lint"
run: "composer ci:php:lint"
strategy:
@ -46,7 +48,9 @@ jobs:
coverage: none
tools: composer:v2.4
- name: "Show Composer version"
run: composer --version
run: "composer --version"
- name: "Show the Composer configuration"
run: "composer config --global --list"
- name: "Cache dependencies installed with composer"
uses: actions/cache@v3
with:
@ -109,7 +113,9 @@ jobs:
coverage: none
tools: composer:v2.4
- name: "Show Composer version"
run: composer --version
run: "composer --version"
- name: "Show the Composer configuration"
run: "composer config --global --list"
- name: "Cache dependencies installed with composer"
uses: actions/cache@v3
with:
@ -189,7 +195,9 @@ jobs:
extensions: mysqli
coverage: none
- name: "Show Composer version"
run: composer --version
run: "composer --version"
- name: "Show the Composer configuration"
run: "composer config --global --list"
- name: "Cache dependencies installed with composer"
uses: actions/cache@v3
with: