Skip to content

feat: add debug capabilities #61

feat: add debug capabilities

feat: add debug capabilities #61

Workflow file for this run

name: 'Commitlint'
on:
push:
branches:
- main
pull_request:
permissions:
contents: read # to fetch code (actions/checkout)
actions: read
jobs:
commitlint:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 20
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
version: 9.1.0
run_install: true
- name: Validate PR commits with commitlint
if: github.event_name == 'pull_request'
run: pnpx commitlint --from ${{ github.event.pull_request.base.sha }} --to ${{ github.event.pull_request.head.sha }} --verbose