Skip to content

Bump org.pitest:pitest-maven from 1.17.3 to 1.18.0 #5

Bump org.pitest:pitest-maven from 1.17.3 to 1.18.0

Bump org.pitest:pitest-maven from 1.17.3 to 1.18.0 #5

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