From 18deff0d58db684d978301c69663fab00d107486 Mon Sep 17 00:00:00 2001 From: Jose Chirivella Date: Mon, 12 Feb 2024 15:36:22 -0600 Subject: [PATCH] Commands --- .github/workflows/ci.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d14246589..477e6911f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -113,14 +113,15 @@ jobs: mv coverage.json .nyc_output/out.json - name: Create coverage report run: | - npx nyc report --reporter html --reporter text --reporter json-summary --report-dir reports > coverage.lcov - ls -l coverage - ls -l . + npx nyc report --reporter html --reporter text --reporter json-summary > coverage.lcov - name: Store Artifacts uses: actions/upload-artifact@v3 with: name: code-coverage-report - path: coverage + path: | + cypress-coverage + .nyc_output + reports build: needs: e2e runs-on: ubuntu-latest