From 01ecc76f46ad7cfe563187a172ddc9aedf94b469 Mon Sep 17 00:00:00 2001 From: Nitin Kumar Date: Tue, 15 Jun 2021 09:24:10 +0530 Subject: [PATCH] ci: update for webpack 5 --- .github/workflows/nodejs.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index b4a02f4..d168747 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -39,7 +39,7 @@ jobs: run: npm run lint build: - name: Tests and Coverage - ${{ matrix.os }} - Node v${{ matrix.node-version }}, Webpack ${{ matrix.webpack-version }} + name: Tests and Coverage - ${{ matrix.os }} - Node v${{ matrix.node-version }} runs-on: ${{ matrix.os }} @@ -47,7 +47,6 @@ jobs: matrix: os: [ubuntu-latest, windows-latest, macos-latest] node-version: [12.x, 14.x] - webpack-version: [4] steps: - uses: actions/checkout@v2 @@ -62,9 +61,6 @@ jobs: - name: Install dependencies run: npm install - - name: Install webpack ${{ matrix.webpack-version }} - run: npm install webpack@${{ matrix.webpack-version }} - - name: Run tests and generate coverage run: | npm run test