Skip to content

Commit 9d456b8

Browse files
authored
Merge branch 'master' into update-gha
2 parents cc62e5c + 4a7c36f commit 9d456b8

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/nodejs.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ jobs:
8181
run: npm i
8282

8383
- name: Install webpack ${{ matrix.webpack-version }}
84+
if: matrix.webpack-version != 'latest'
8485
run: npm i webpack@${{ matrix.webpack-version }}
8586

8687
- name: Run tests for webpack version ${{ matrix.webpack-version }}
@@ -117,9 +118,6 @@ jobs:
117118
- name: Install dependencies
118119
run: npm i
119120

120-
- name: Install webpack latest
121-
run: npm i webpack@latest
122-
123121
- name: Run tests for webpack version latest with experimentalUseImportModule
124122
run: npm run test:coverage -- --ci
125123
env:

README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88

99
[![npm][npm]][npm-url]
1010
[![node][node]][node-url]
11-
[![deps][deps]][deps-url]
1211
[![tests][tests]][tests-url]
1312
[![coverage][cover]][cover-url]
1413
[![chat][chat]][chat-url]
@@ -1195,8 +1194,6 @@ Please take a moment to read our contributing guidelines if you haven't yet done
11951194
[npm-url]: https://npmjs.com/package/mini-css-extract-plugin
11961195
[node]: https://img.shields.io/node/v/mini-css-extract-plugin.svg
11971196
[node-url]: https://nodejs.org
1198-
[deps]: https://david-dm.org/webpack-contrib/mini-css-extract-plugin.svg
1199-
[deps-url]: https://david-dm.org/webpack-contrib/mini-css-extract-plugin
12001197
[tests]: https://github.com/webpack-contrib/mini-css-extract-plugin/workflows/mini-css-extract-plugin/badge.svg
12011198
[tests-url]: https://github.com/webpack-contrib/mini-css-extract-plugin/actions
12021199
[cover]: https://codecov.io/gh/webpack-contrib/mini-css-extract-plugin/branch/master/graph/badge.svg

commitlint.config.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
11
module.exports = {
22
extends: ["@commitlint/config-conventional"],
3+
rules: {
4+
"header-max-length": [0],
5+
"body-max-line-length": [0],
6+
"footer-max-line-length": [0],
7+
},
38
};

0 commit comments

Comments
 (0)