Skip to content

chore(deps): update github/codeql-action action to v3.31.0 #52

chore(deps): update github/codeql-action action to v3.31.0

chore(deps): update github/codeql-action action to v3.31.0 #52

Workflow file for this run

name: Commit Linter
on:
push:
branches: ["main"]
pull_request:
permissions:
contents: read
pull-requests: read
jobs:
commitlint:
runs-on: ubuntu-latest
name: Conventional Commitlint
permissions:
contents: read
pull-requests: read
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Setup node
uses: actions/setup-node@v6
with:
node-version: lts/*
- name: Install commitlint
run: npm install -D @commitlint/cli @commitlint/config-conventional
- name: Print versions
run: |
git --version
node --version
npm --version
npx commitlint --version
- name: Validate PR commits with commitlint
if: github.event_name == 'pull_request'
run: npx commitlint --from ${{ github.event.pull_request.base.sha }} --to ${{ github.event.pull_request.head.sha }} --verbose