From 988874a3fd098f0394ede90349470e69395e3290 Mon Sep 17 00:00:00 2001 From: mariacarmina Date: Mon, 23 Sep 2024 13:48:30 +0300 Subject: [PATCH] Aggregate coverage. --- .github/workflows/ci.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c1aebcc3..f348e40d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -73,7 +73,7 @@ jobs: - run: npm run test:unit:cover - uses: actions/upload-artifact@v4 with: - name: coverage + name: coverage-unit path: coverage/ test_integration: @@ -145,7 +145,7 @@ jobs: - name: Upload coverage uses: actions/upload-artifact@v4 with: - name: coverage + name: coverage-integration path: coverage/ build: @@ -182,8 +182,10 @@ jobs: - uses: actions/checkout@v3 - uses: actions/download-artifact@v4 with: - name: coverage - + name: coverage-unit + - uses: actions/download-artifact@v4 + with: + name: coverage-integration - uses: paambaati/codeclimate-action@v2.7.5 env: CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}