Skip to content

ci: automate release process with semantic-release #6

ci: automate release process with semantic-release

ci: automate release process with semantic-release #6

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