Skip to content

Commit 2c05699

Browse files
Enable color in gha
1 parent 747ef9f commit 2c05699

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/create-project.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,14 @@ jobs:
3838
name: Create-project with skeleton ^4
3939
if: "always() && steps.config.outcome == 'success'"
4040
run: |
41-
composer create-project "symfony/skeleton:^4" v4
41+
composer create-project --ansi "symfony/skeleton:^4" v4
4242
cd v4
43-
composer require $PACKAGES
43+
composer require --ansi $PACKAGES
4444
4545
-
4646
name: Create-project with skeleton ^5
4747
if: "always() && steps.config.outcome == 'success'"
4848
run: |
49-
composer create-project "symfony/skeleton:^5" v5
49+
composer create-project --ansi "symfony/skeleton:^5" v5
5050
cd v5
51-
composer require $PACKAGES
51+
composer require --ansi $PACKAGES

.github/workflows/qa.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
wget -q -O recipes-checker.zip https://codeload.github.com/symfony-tools/recipes-checker/zip/refs/heads/main
2929
unzip recipes-checker.zip
3030
cd recipes-checker-main
31-
composer install --no-dev
31+
composer install --ansi --no-dev
3232
3333
-
3434
name: Check manifest.json files

0 commit comments

Comments
 (0)