Skip to content

Commit

Permalink
ci: ✨ add conventional commits linter to gh action
Browse files Browse the repository at this point in the history
  • Loading branch information
jooyoungseo committed Dec 31, 2023
1 parent 492d23f commit fc4b758
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/commit-message-lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Lint Commit Messages

on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main, develop ]

jobs:
commitlint:
runs-on: ubuntu-latest

steps:
- name: Check out the repository
uses: actions/checkout@v2
with:
fetch-depth: 0 # Ensures commit history is pulled

- name: Install Node.js
uses: actions/setup-node@v2
with:
node-version: '20.3.1'

- name: Install commitlint
run: |
npm install @commitlint/{config-conventional,cli}
- name: Lint Commit Messages
run: npx commitlint --from=HEAD~1 --to=HEAD --verbose

0 comments on commit fc4b758

Please sign in to comment.