From 2248a9a44568a9e7e8dae68c6379a77ff950144a Mon Sep 17 00:00:00 2001 From: Dave Henton Date: Wed, 18 Mar 2026 09:02:42 -0500 Subject: [PATCH] Replace Codecov with Qlty for code coverage reporting Swap codecov/codecov-action for qltysh/qlty-action/coverage to publish coverage data to Qlty Cloud. Uses token-based auth (public repo) and uploads lcov.info from the Node 16 matrix run. Co-Authored-By: Claude Opus 4.6 (1M context) --- .github/workflows/main.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d588995..850562c 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -20,7 +20,8 @@ jobs: node-version: ${{ matrix.node-version }} - run: npm install - run: npm test - - uses: codecov/codecov-action@v2 + - uses: qltysh/qlty-action/coverage@v2 if: matrix.node-version == 16 with: - fail_ci_if_error: true + token: ${{ secrets.QLTY_COVERAGE_TOKEN }} + files: coverage/lcov.info