Skip to content

Commit

Permalink
test(ci): better cli output, I guess 🤞
Browse files Browse the repository at this point in the history
Signed-off-by: Fery Wardiyanto <[email protected]>
  • Loading branch information
feryardiant committed Oct 13, 2023
1 parent 049bfd1 commit 734fafb
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ jobs:

- name: Install PHP dependencies
run: |
composer install --prefer-dist --no-interaction --no-progress
composer install --prefer-dist --no-interaction --no-progress --ansi
composer ziggy:generate
php artisan vendor:publish --tag creasi-assets
php artisan vendor:publish --tag creasi-assets --ansi
- name: Build frontend
env:
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,7 @@ jobs:
path: public

- name: Install PHP dependencies
run: |
composer install --prefer-dist --no-interaction --no-progress
run: composer install --prefer-dist --no-interaction --no-progress --ansi

- name: Deploy
uses: deployphp/action@v1
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
restore-keys: ${{ runner.os }}-${{ matrix.php }}-composer-

- name: Install PHP dependencies
run: composer update --prefer-dist --no-interaction --no-progress
run: composer install --prefer-dist --no-interaction --no-progress --ansi

- name: Run unit tests
run: php artisan test --ansi --coverage
Expand Down Expand Up @@ -161,8 +161,7 @@ jobs:
restore-keys: ${{ runner.os }}-8.1-composer-

- name: Install PHP dependencies
run: |
composer install --prefer-dist --no-interaction --no-progress
run: composer install --prefer-dist --no-interaction --no-progress --ansi

- name: Setup BrowserStack env # Invokes the setup-env action
uses: browserstack/github-actions/setup-env@master
Expand All @@ -181,7 +180,7 @@ jobs:
run: php artisan serve > /dev/null 2>&1 &

- name: Run e2e tests
run: php artisan dusk
run: php artisan dusk --ansi

- name: Upload e2e tests logs
if: failure()
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/reports.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
workflow_run:
workflows: [Code Quality]
types: [requested]
branches: [main]

env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
Expand Down

0 comments on commit 734fafb

Please sign in to comment.