Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"packageRules": [
{
"description": "Disable updates for aliased @commitlint packages with a final version",
"packagePatterns": ["^@commitlint/(lint|load)\\-(9|10|11)\\.x"],
"packagePatterns": ["^@commitlint/(lint|load)\\-(9|10|11|12)\\.x"],
"depTypeList": ["devDependencies"],
"enabled": false
},
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@25316bbc1f10ac9d8798711f44914b1cf3c4e954 # renovate: tag=v2.4.0
with:
node-version: 14
node-version: 16
- name: Install project
run: npm ci --ignore-scripts
- name: Lint
Expand All @@ -28,7 +28,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node: [10, 12, 14, 15]
node: [12, 14, 16]
steps:
- name: Checkout
uses: actions/checkout@v2.3.4
Expand All @@ -47,7 +47,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node: [10, 12, 14, 15]
node: [12, 14, 16]
steps:
- name: Checkout
uses: actions/checkout@v2.3.4
Expand All @@ -69,7 +69,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@25316bbc1f10ac9d8798711f44914b1cf3c4e954 # renovate: tag=v2.4.0
with:
node-version: 14
node-version: 16
- name: Install project
run: npm ci --ignore-scripts
- name: Test
Expand All @@ -96,7 +96,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@25316bbc1f10ac9d8798711f44914b1cf3c4e954 # renovate: tag=v2.4.0
with:
node-version: 14
node-version: 16
- name: Install project
run: npm ci --ignore-scripts
- name: Build
Expand Down
14 changes: 7 additions & 7 deletions docs/rules.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,11 @@ This configuration is extending [@commitlint/config-conventional][@commitlint/co
100
```
- If `header` has one of the prefixes listed below.
- `chore(deps):`
- `fix(deps):`
- `chore(peer-deps):`
- `chore(deps):`
- `build(deps):`
- `chore(deps-dev):`
- `build(deps-dev):`
- `chore(deps)`, for [Renovate][renovate] and [Dependabot][dependabot].
- `fix(deps)`, for [Renovate][renovate].
- `build(deps)`, for [Dependabot][dependabot].
- `chore(deps-dev)`, for [Dependabot][dependabot].
- `build(deps-dev)`, for [Dependabot][dependabot].
```
200
```
Expand All @@ -56,3 +54,5 @@ $ echo 'chore(peer-deps): we are told to remember the idea, not the man, because
<!-- References -->

[@commitlint/config-conventional]: https://github.com/conventional-changelog/commitlint/tree/master/%40commitlint/config-conventional
[renovate]: https://renovatebot.com
[dependabot]: https://dependabot.com
Loading