We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 791dba6 + 3665a20 commit 88b3977Copy full SHA for 88b3977
.github/workflows/nodejs.yml
@@ -81,6 +81,7 @@ jobs:
81
run: npm i
82
83
- name: Install webpack ${{ matrix.webpack-version }}
84
+ if: matrix.webpack-version != 'latest'
85
run: npm i webpack@${{ matrix.webpack-version }}
86
87
- name: Run tests for webpack version ${{ matrix.webpack-version }}
@@ -117,9 +118,6 @@ jobs:
117
118
- name: Install dependencies
119
120
- - name: Install webpack latest
121
- run: npm i webpack@latest
122
-
123
- name: Run tests for webpack version latest with experimentalUseImportModule
124
run: npm run test:coverage -- --ci
125
env:
commitlint.config.js
@@ -1,3 +1,8 @@
1
module.exports = {
2
extends: ["@commitlint/config-conventional"],
3
+ rules: {
4
+ "header-max-length": [0],
5
+ "body-max-line-length": [0],
6
+ "footer-max-line-length": [0],
7
+ },
8
};
0 commit comments