Skip to content

Commit 1bb916c

Browse files
committed
chore: update CI workflow and changelog configuration
- Upgrade GitHub Actions to v4 (checkout and setup-node) - Update Node.js version from 12.x to 20.x in CI pipeline - Make additional commit types visible in changelog (chore, docs, style, refactor, perf) - Add descriptive section names for previously hidden commit types
1 parent 5834f78 commit 1bb916c

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ jobs:
99
build:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v4
1313
# Setup .npmrc file to publish to npm
14-
- uses: actions/setup-node@v2
14+
- uses: actions/setup-node@v4
1515
with:
16-
node-version: '12.x'
16+
node-version: '20.x'
1717
registry-url: 'https://registry.npmjs.org'
1818
- run: npm install
1919
- run: npm publish --access public

.versionrc.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
{ "type": "feat", "section": "Features" },
44
{ "type": "fix", "section": "Bug Fixes" },
55
{ "type": "build", "section": "Build Changes" },
6-
{ "type": "chore", "hidden": true },
7-
{ "type": "docs", "hidden": true },
8-
{ "type": "style", "hidden": true },
9-
{ "type": "refactor", "hidden": true },
10-
{ "type": "perf", "hidden": true },
6+
{ "type": "chore", "section": "Minimal Updates" },
7+
{ "type": "docs", "section": "Documentation Updates" },
8+
{ "type": "style", "section": "Code Style Updates" },
9+
{ "type": "refactor", "section": "Code Refactoring" },
10+
{ "type": "perf", "section": "Performance Improvements" },
1111
{ "type": "test", "hidden": true }
1212
],
1313
"commitUrlFormat": "https://github.com/BOTOOM/quill-resize-module/commit/{{hash}}",

0 commit comments

Comments
 (0)