From c37dbeb6a634d6824d1b1a4a543d34f3278035ac Mon Sep 17 00:00:00 2001 From: Ferdinand Thiessen Date: Sun, 1 Sep 2024 12:13:48 +0200 Subject: [PATCH] ci: fix cypress tests Signed-off-by: Ferdinand Thiessen --- .github/workflows/cypress.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/cypress.yml b/.github/workflows/cypress.yml index f7396a89b..24d2663bf 100644 --- a/.github/workflows/cypress.yml +++ b/.github/workflows/cypress.yml @@ -109,14 +109,10 @@ jobs: - name: Run ${{ matrix.containers == 'component' && 'component' || 'E2E' }} cypress tests uses: cypress-io/github-action@8d3918616d8ac34caa2b49afc8b408b6a872a6f5 # v6.7.1 with: - record: ${{ secrets.CYPRESS_RECORD_KEY && true }} - parallel: ${{ secrets.CYPRESS_RECORD_KEY && true }} # cypress run type component: ${{ matrix.containers == 'component' }} - group: ${{ secrets.CYPRESS_RECORD_KEY && env.CYPRESS_GROUP }} - # cypress env - ci-build-id: ${{ secrets.CYPRESS_RECORD_KEY && env.CYPRESS_BUILD_ID }} - tag: ${{ secrets.CYPRESS_RECORD_KEY && github.event_name }} + # Do not add Cypress record key config as this conflicts with cypress-split + # Cypress again tries to force users to buy there dashboard... env: # Needs to be prefixed with CYPRESS_ CYPRESS_BRANCH: ${{ env.BRANCH }} @@ -125,7 +121,6 @@ jobs: # Needed for some specific code workarounds TESTING: true GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }} SPLIT: ${{ matrix.total-containers }} SPLIT_INDEX: ${{ matrix.containers == 'component' && 0 || matrix.containers }}