Skip to content

[CI] Replace ramsey/composer-install by composer install in app-tests workflow #2780

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 28, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 4 additions & 8 deletions .github/workflows/app-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,19 +45,15 @@ jobs:
- uses: shivammathur/setup-php@v2

- name: Install root dependencies
uses: ramsey/composer-install@v3
with:
working-directory: ${{ github.workspace }}
run: composer install

- name: Build root packages
run: php .github/build-packages.php
working-directory: ${{ github.workspace }}

# We always install PHP deps because we of the UX Translator, which requires `var/translations` to exists
- uses: ramsey/composer-install@v3
with:
dependency-versions: 'highest'
working-directory: test_apps/encore-app
- name: Install App dependenies
run: composer update
working-directory: test_apps/encore-app

- if: matrix.ux-packages-source == 'php-vendor'
name: Refresh dependencies from vendor/
Expand Down
Loading