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 e33e8ef commit f5d64c5Copy full SHA for f5d64c5
.github/workflows/lint.yaml
@@ -71,8 +71,9 @@ jobs:
71
node-version: lts/*
72
- name: Install commitlint
73
run: |
74
- npm install -D @commitlint/cli@19.8.1 @commitlint/config-conventional@19.8.1
75
- echo "module.exports = { extends: ['@commitlint/config-conventional'], rules: {'subject-case': [0]} };" > commitlint.config.js
+ COMMITLINT_VERSION=20.1.0
+ npm install -D @commitlint/cli@$COMMITLINT_VERSION @commitlint/config-conventional@$COMMITLINT_VERSION
76
+ echo "module.exports = { extends: ['@commitlint/config-conventional'], rules: {'subject-case': [0], 'header-max-length': [0]} };" > commitlint.config.js
77
npx commitlint --version
78
- name: Validate PR commits with commitlint
79
if: github.event_name == 'pull_request'
0 commit comments