Skip to content

chore(deps): bump setuptools from 82.0.0 to 82.0.1 #124

chore(deps): bump setuptools from 82.0.0 to 82.0.1

chore(deps): bump setuptools from 82.0.0 to 82.0.1 #124

name: Lint commit
on: pull_request
jobs:
commitlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
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