From 741c3d06a30698ab063de51fd1ebe98538d6a2c8 Mon Sep 17 00:00:00 2001 From: notaphplover Date: Thu, 17 Oct 2024 23:34:44 +0200 Subject: [PATCH] fix: update collect coverage workflow to use proper filters --- .github/workflows/collect-coverage.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/collect-coverage.yaml b/.github/workflows/collect-coverage.yaml index 89a1d253..ef870201 100644 --- a/.github/workflows/collect-coverage.yaml +++ b/.github/workflows/collect-coverage.yaml @@ -56,7 +56,7 @@ jobs: ts-build-${{ steps.get-git-commit-hash.outputs.gitCommitHash }} - name: Build on cache miss - run: pnpm run build --filter ${{ join(matrix.packages, ' --filter ') }} + run: pnpm run build --filter ${{ matrix.package }} if: ${{ !steps.ts-build-cache.outputs.cache-hit }} - name: Launch Unit Tests and generate coverage report