Skip to content
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

PSR fatal error during the build #3784

Merged
merged 11 commits into from
Dec 6, 2023
Prev Previous commit
Next Next commit
Get cache back and remove php setup
  • Loading branch information
felipeelia committed Dec 6, 2023
commit 4089671f3f11f91e81a53b4e38ca8180a62e7b81
10 changes: 9 additions & 1 deletion .github/workflows/cypress-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,16 @@ jobs:
restore-keys: |
npm-${{ env.NODE_VERSION }}-

- name: Prepare composer cache
uses: actions/cache@v3
with:
path: ${{ env.COMPOSER_CACHE }}
key: composer-${{ env.COMPOSER_VERSION }}-${{ hashFiles('**/composer.lock') }}
restore-keys: |
composer-${{ env.COMPOSER_VERSION }}-

- name: composer install
run: composer install -vvv
run: composer install

- name: "Install node v${{ env.NODE_VERSION }}"
uses: actions/setup-node@v3
Expand Down
Loading