From 4261329c3697b16868f7f687523782579993058a Mon Sep 17 00:00:00 2001 From: Liam DeBeasi Date: Fri, 19 May 2023 11:12:48 -0400 Subject: [PATCH] fix syntax error --- .github/workflows/actions/generate-test-report/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/actions/generate-test-report/action.yml b/.github/workflows/actions/generate-test-report/action.yml index 6f8dc78a68..0ae4735d58 100644 --- a/.github/workflows/actions/generate-test-report/action.yml +++ b/.github/workflows/actions/generate-test-report/action.yml @@ -26,7 +26,7 @@ runs: shell: bash working-directory: ./core/test-reporter - name: Generate Report - run: node dist/index.js ../../../test-report-*/*.json + run: node dist/index.js "../../../test-report-*/*.json" env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} REPO: ${{ github.repository.repo }}