From e12d3c7015b7afab0fc8cf6e6c86a8c2bf1783f6 Mon Sep 17 00:00:00 2001 From: Elio Bischof Date: Wed, 27 Nov 2024 13:04:21 +0100 Subject: [PATCH] quote --- .github/workflows/test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index be374886224..d8b9761a453 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -28,7 +28,7 @@ on: jobs: matrix: # If the workflow is triggered by a schedule event, only the acceptance tests run against QA and Prod. - name: Prepare Matrix + name: Preparte Matrix runs-on: ubuntu-latest outputs: matrix: ${{ steps.prepare-matrix.outputs.matrix }} @@ -46,7 +46,7 @@ jobs: echo 'matrix=["format --check", "lint", "test:unit", "test:integration", "test:acceptance"]' >> $GITHUB_OUTPUT fi - name: Show Matrix - run: echo '${{ steps.prepare-matrix.outputs.matrix }}' | jq + run: echo ${{ steps.prepare-matrix.outputs.matrix }} | jq quality: name: Ensure Quality @@ -61,7 +61,7 @@ jobs: strategy: fail-fast: false matrix: - command: ${{ fromJson( needs.prepare-matrix.outputs.matrix ) }} + command: "${{ fromJson( needs.prepare-matrix.outputs.matrix ) }}" steps: - name: Checkout Repo