From 38a695ea12145089ac2d8e58f1c4ed8c0c4a7a87 Mon Sep 17 00:00:00 2001 From: vorotamoroz Date: Fri, 9 Jan 2026 12:18:38 +0000 Subject: [PATCH] Fix actions --- .github/workflows/harness-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/harness-ci.yml b/.github/workflows/harness-ci.yml index a425d89..00685a6 100644 --- a/.github/workflows/harness-ci.yml +++ b/.github/workflows/harness-ci.yml @@ -47,13 +47,13 @@ jobs: if: ${{ inputs.coverage == false }} env: CI: true - run: npm run test ${ inputs.testDir } + run: npm run test ${{ inputs.testDir }} - name: Run tests with coverage if: ${{ inputs.coverage == true }} env: CI: true - run: npm run test:coverage ${ inputs.testDir } + run: npm run test:coverage ${{ inputs.testDir }} - name: Upload coverage artifact if: ${{ inputs.coverage && always() }}