From a31a469e58731b55483ff2c7acdda68908070705 Mon Sep 17 00:00:00 2001 From: Jannik Pulfer Date: Tue, 5 Nov 2024 12:23:06 +0100 Subject: [PATCH] Try matrix action by hardcoding values --- .github/workflows/frontend-test-action.yml | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/.github/workflows/frontend-test-action.yml b/.github/workflows/frontend-test-action.yml index de608349d6..d59ccf47f9 100644 --- a/.github/workflows/frontend-test-action.yml +++ b/.github/workflows/frontend-test-action.yml @@ -22,24 +22,11 @@ jobs: - name: Run unit tests run: npm test - get-e2e-files: - runs-on: ubuntu-24.04 - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Generate file list - id: generate-file-list - run: | - FILES=$(find frontend/cypress/e2e -type f -exec basename {} \; | jq -R . | jq -s .) - echo "file_list=$FILES" >> $GITHUB_OUTPUT - e2e: - needs: get-e2e-files runs-on: ubuntu-24.04 strategy: matrix: - file: ${{ fromJSON(needs.get-e2e-files.outputs.file_list) }} + file: "['checkIn.cy.ts', 'crud.cy.ts']" steps: - name: Checkout uses: actions/checkout@v4