From dce2f75a52751876928baea9bb0b7cb9a1d88190 Mon Sep 17 00:00:00 2001 From: Dan Gowans Date: Tue, 18 Mar 2025 13:59:02 -0400 Subject: [PATCH] update tested node versions --- .github/workflows/coverage.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 49f5820e..b7cd8308 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -10,7 +10,7 @@ jobs: strategy: fail-fast: false matrix: - node: [ 18, 20, 21 ] + node: [ 18, 20, 22, 23 ] env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }} @@ -43,14 +43,14 @@ jobs: run: c8 --reporter=lcov --reporter=text --reporter=text-summary mocha --timeout 10000 --exit - name: Codecov - if: ${{ github.event_name != 'pull_request' && env.CODECOV_TOKEN != '' && matrix.node == 20 }} + if: ${{ github.event_name != 'pull_request' && env.CODECOV_TOKEN != '' && matrix.node == 22 }} run: | curl -Os https://uploader.codecov.io/latest/linux/codecov chmod +x codecov ./codecov -t ${CODECOV_TOKEN} - name: DeepSource - if: ${{ github.event_name != 'pull_request' && env.DEEPSOURCE_DSN != '' && matrix.node == 20 }} + if: ${{ github.event_name != 'pull_request' && env.DEEPSOURCE_DSN != '' && matrix.node == 22 }} run: | # Install deepsource CLI curl https://deepsource.io/cli | sh