Skip to content

Commit 88b3977

Browse files
authored
Merge branch 'master' into remove-badge
2 parents 791dba6 + 3665a20 commit 88b3977

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
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:

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)