From 6c2618d1f8df5a71beb42825f6b9578233016e63 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hu=C3=A1ng=20J=C3=B9nli=C3=A0ng?= Date: Fri, 28 Jul 2023 15:03:01 -0400 Subject: [PATCH] add node 20 to CI jobs --- .github/workflows/ci.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index db6abbea..50ca7b00 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,11 +11,11 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest] - node-version: [14, 16, 18] - webpack-version: ['5'] + node-version: [14, 16, 18, 20] + webpack-version: ["5"] include: - node-version: "14.15.0" # The minimum supported node version - webpack-version: latest + webpack-version: "5.0.0" # The minimum supported webpack version os: ubuntu-latest runs-on: ${{ matrix.os }} steps: @@ -24,7 +24,7 @@ jobs: uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} - cache: 'yarn' + cache: "yarn" - name: Install dependencies run: yarn - name: Install webpack ${{ matrix.webpack-version }} @@ -47,7 +47,7 @@ jobs: uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} - cache: 'yarn' + cache: "yarn" - name: Install dependencies run: yarn - name: Run lint and coverage tests @@ -56,4 +56,3 @@ jobs: uses: codecov/codecov-action@v3 with: token: ${{ secrets.CODECOV_TOKEN }} -