From 5c163abfccaae6d3db61a3c9e3d3db915995fd82 Mon Sep 17 00:00:00 2001 From: Felipe Elia Date: Wed, 6 Dec 2023 16:17:46 -0300 Subject: [PATCH] bypass cache, php setup + composer verbosity --- .github/workflows/cypress-tests.yml | 30 +---------------------------- 1 file changed, 1 insertion(+), 29 deletions(-) diff --git a/.github/workflows/cypress-tests.yml b/.github/workflows/cypress-tests.yml index e27388b815..bd0613eeff 100644 --- a/.github/workflows/cypress-tests.yml +++ b/.github/workflows/cypress-tests.yml @@ -42,36 +42,8 @@ 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: Set PHP version - uses: shivammathur/setup-php@v2 - with: - php-version: '8.2' - tools: cs2pr - coverage: none - - name: composer install - run: composer install - - - name: Zip - if: failure() - run: npm run build:zip - - - name: Make artifacts available - uses: actions/upload-artifact@v3 - if: failure() - with: - name: cypress-artifact-${{ matrix.core.name }}-${{ matrix.testGroup }} - retention-days: 2 - path: | - ${{ github.workspace }}/elasticpress.zip + run: composer install -vvv - name: "Install node v${{ env.NODE_VERSION }}" uses: actions/setup-node@v3