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