This is an automated email from the ASF dual-hosted git repository.

hainenber pushed a commit to branch use-native-codecov-merging-coverage-results
in repository https://gitbox.apache.org/repos/asf/superset.git

commit d0b422638e49347cd9e72dc220ba516fb8f2830f
Author: hainenber <[email protected]>
AuthorDate: Sun Jul 26 11:57:45 2026 +0700

    chore(ci): remove `nyc` usage for merging coverage results as Codecov 
natively supports the action
    
    Signed-off-by: hainenber <[email protected]>
---
 .github/workflows/superset-frontend.yml | 14 +-------------
 1 file changed, 1 insertion(+), 13 deletions(-)

diff --git a/.github/workflows/superset-frontend.yml 
b/.github/workflows/superset-frontend.yml
index e4e61344a7c..46cb237c4d8 100644
--- a/.github/workflows/superset-frontend.yml
+++ b/.github/workflows/superset-frontend.yml
@@ -122,25 +122,13 @@ jobs:
           pattern: coverage-artifacts-*
           path: coverage/
 
-      - name: Reorganize test result reports
-        run: |
-          find coverage/
-          for i in {1..8}; do
-            mv coverage/coverage-artifacts-${i}/coverage-final.json 
coverage/coverage-shard-${i}.json
-          done
-        shell: bash
-
-      - name: Merge Code Coverage
-        run: npx nyc merge coverage/ merged-output/coverage-summary.json
-
       - name: Upload Code Coverage
         uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f 
# v7.0.0
         with:
           flags: javascript
           use_oidc: true
           verbose: true
-          disable_search: true
-          files: merged-output/coverage-summary.json
+          directory: coverage
           slug: apache/superset
 
   lint-frontend:

Reply via email to