diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1a9d48c..2fa00a1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,10 +30,6 @@ jobs: strategy: fail-fast: false matrix: - options: >- - --test-coverage-lines=0.8 - --test-reporter-destination=./coverage.lcov - --test-reporter=lcov node: - version: 23.x - version: 22.x @@ -53,4 +49,9 @@ jobs: node-version: ${{ matrix.node.version }} cache: 'npm' - run: npm ci - - run: node --run test ${{ matrix.node.options }} + - run: | + node \ + --run test \ + --test-coverage-lines=0.8 \ + --test-reporter-destination=./coverage.lcov \ + --test-reporter=lcov