From d836e6a118a7bee71d19a61509c3df95fab52184 Mon Sep 17 00:00:00 2001 From: Martijn Dirkse Date: Fri, 22 Nov 2024 14:30:54 +0100 Subject: [PATCH] Fix choosing tests to run --- .github/workflows/testing.js.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/testing.js.yml b/.github/workflows/testing.js.yml index 1a150dd8..d0f959ae 100644 --- a/.github/workflows/testing.js.yml +++ b/.github/workflows/testing.js.yml @@ -94,11 +94,7 @@ jobs: restore-keys: | ${{ runner.os }}-cypress- - - name: Choose tests to run - choice is the default - run: sed "s|SELECTION||g" cypress.env.json.cicd.template > cypress.env.json.cicd - working-directory: ladybug-frontend - if: ${{ matrix.selection == 'default' }} - - name: Choose tests to run + - name: Choose tests to run - choice is ${{ matrix.selection }} run: sed "s|SELECTION|\"selection\":\"${{ matrix.selection }}\",|g" cypress.env.json.cicd.template > cypress.env.json.cicd working-directory: ladybug-frontend if: ${{ matrix.selection == 'xml-storage' }}