Skip to content

Bump com.puppycrawl.tools:checkstyle from 10.21.0 to 10.21.2 #7

Bump com.puppycrawl.tools:checkstyle from 10.21.0 to 10.21.2

Bump com.puppycrawl.tools:checkstyle from 10.21.0 to 10.21.2 #7

Workflow file for this run

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