From c875d8174c5b734a8ebfd56e06905acf3c81f0ef Mon Sep 17 00:00:00 2001 From: Jacob Smith <3012099+JakobJingleheimer@users.noreply.github.com> Date: Thu, 12 Dec 2024 21:25:04 +0000 Subject: [PATCH] chore(ci): fix "run recipe tests" for windows by leveraging yaml magic (#9) --- .github/workflows/ci.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 90c3ba3..e4dc77d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -59,9 +59,10 @@ jobs: node-version: ${{ matrix.node.version }} cache: 'npm' - run: npm ci - - run: | - node \ - --run test \ - --test-coverage-lines=0.8 \ - --test-reporter-destination=./coverage.lcov \ - --test-reporter=lcov + - name: Run recipe tests + run: >- + node + --run test + --test-coverage-lines=0.8 + --test-reporter-destination=./coverage.lcov + --test-reporter=lcov