We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 034dabb commit 2cbd1ccCopy full SHA for 2cbd1cc
.github/workflows/nodejs.yml
@@ -56,6 +56,7 @@ jobs:
56
matrix:
57
os: [ubuntu-latest, windows-latest, macos-latest]
58
node-version: [12.x, 14.x, 16.x]
59
+ eslint-version: [7.x, 8.x]
60
webpack-version: [latest]
61
62
runs-on: ${{ matrix.os }}
@@ -87,6 +88,9 @@ jobs:
87
88
- name: Install webpack ${{ matrix.webpack-version }}
89
run: npm i webpack@${{ matrix.webpack-version }}
90
91
+ - name: Install eslint ${{ matrix.eslint-version }}
92
+ run: npm i eslint@${{ matrix.eslint-version }}
93
+
94
- name: Run tests for webpack version ${{ matrix.webpack-version }}
95
run: npm run test:coverage -- --ci
96
0 commit comments