From ba3f256741f415a93eb265b950d0fec6628d600f Mon Sep 17 00:00:00 2001 From: Jacky Li Date: Wed, 13 Sep 2023 14:02:14 -0700 Subject: [PATCH] feat: add node 18 and 20 to build matrix, remove node 12 orphaned code --- .github/workflows/npm-test.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/npm-test.yml b/.github/workflows/npm-test.yml index 989cf91ae..c4befddf5 100644 --- a/.github/workflows/npm-test.yml +++ b/.github/workflows/npm-test.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node: [16] + node: [16, 18, 20] name: node-${{ matrix.node }} steps: - uses: actions/checkout@v2 @@ -21,12 +21,10 @@ jobs: with: github_token: ${{ secrets.GITHUB_TOKEN }} files: coverage/junit.xml - if: matrix.node == 12 - uses: codecov/codecov-action@v1 with: yml: codecov.yml token: ${{ secrets.CODECOV_TOKEN }} - if: matrix.node == 12 docker: runs-on: ubuntu-latest name: docker-build