mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-22 20:36:12 +01: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:
parent
c5ce5d1ccc
commit
1129d74c53
1 changed files with 11 additions and 3 deletions
14
.github/workflows/ci.yml
vendored
14
.github/workflows/ci.yml
vendored
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue