From e765187e013a8b782ba703267ad2e6e1fe6e4584 Mon Sep 17 00:00:00 2001 From: Gustavo Marques de Lima Date: Wed, 3 Jun 2026 11:10:23 -0300 Subject: [PATCH] ci: use Node 20 for package tests --- .github/workflows/ci.yml | 19 ++----------------- 1 file changed, 2 insertions(+), 17 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c93f61c..6d0f45c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,18 +12,15 @@ permissions: jobs: test: runs-on: ubuntu-latest - strategy: - matrix: - node-version: [20.x, 24.x] steps: - name: Checkout code uses: actions/checkout@v5 - - name: Setup Node.js ${{ matrix.node-version }} + - name: Setup Node.js 20.x uses: actions/setup-node@v5 with: - node-version: ${{ matrix.node-version }} + node-version: 20.x cache: npm - name: Install dependencies @@ -31,15 +28,3 @@ jobs: - name: Run tests with coverage run: npm run test:coverage - - - name: Upload coverage to Codecov - if: matrix.node-version == '24.x' - uses: codecov/codecov-action@v5 - continue-on-error: true - with: - token: ${{ secrets.CODECOV_TOKEN }} - files: ./coverage/lcov.info - fail_ci_if_error: false - verbose: true - env: - CODECOV_GPG_VERIFY: false