From ffd4cfb1b77efc18237b2a30da607d030ec8ca47 Mon Sep 17 00:00:00 2001 From: Alex Early Date: Wed, 1 Nov 2023 13:01:32 -0700 Subject: [PATCH] Run coverage on node 20 --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9ff982189..2c236df69 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -80,11 +80,11 @@ jobs: DISPLAY: :99.0 - name: Coverage - if: matrix.os == 'ubuntu-latest' && matrix.node == '16' + if: matrix.os == 'ubuntu-latest' && matrix.node == '20' run: npm run coverage && npx nyc report --reporter=lcov - name: Coveralls - if: matrix.os == 'ubuntu-latest' && matrix.node == '16' + if: matrix.os == 'ubuntu-latest' && matrix.node == '20' uses: coverallsapp/github-action@1.1.3 with: github-token: ${{ secrets.GITHUB_TOKEN }}