diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 56dcf00485a..c42851218d1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,7 +28,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - node: [16.x, 14.x, 12.x, "12.22.0"] + node: [17.x, 16.x, 14.x, 12.x, "12.22.0"] include: - os: windows-latest node: "12.x" @@ -43,10 +43,10 @@ jobs: - name: Install Packages run: npm install # TODO(btmills): Remove Node 16 --force branching after releasing v8.0.0 final. - if: ${{ !startswith(matrix.node, '16') }} + if: ${{ !startswith(matrix.node, '16') && !startswith(matrix.node, '17') }} - name: Install Packages run: npm install --force - if: ${{ startswith(matrix.node, '16') }} + if: ${{ startswith(matrix.node, '16') || startswith(matrix.node, '17') }} - name: Test run: node Makefile mocha - name: Fuzz Test