Skip to content

chore(deps-dev): bump org.junit.jupiter:junit-jupiter from 5.11.4 to 5.12.0 #67

chore(deps-dev): bump org.junit.jupiter:junit-jupiter from 5.11.4 to 5.12.0

chore(deps-dev): bump org.junit.jupiter:junit-jupiter from 5.11.4 to 5.12.0 #67

name: Lint commit
on: pull_request
jobs:
commitlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 'lts/*'
cache: npm
- name: Install commitlint
run: |
npm install conventional-changelog-conventionalcommits
npm install commitlint@latest
- name: Validate PR commits with commitlint
run: npx commitlint --from ${{ github.event.pull_request.base.sha }} --to ${{ github.event.pull_request.head.sha }} --verbose