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 }} -