Skip to content

build(deps): Bump the python-dev-deps group across 1 directory with 8 updates #366

build(deps): Bump the python-dev-deps group across 1 directory with 8 updates

build(deps): Bump the python-dev-deps group across 1 directory with 8 updates #366

Workflow file for this run

name: Commitlint
on:
pull_request:
types: [opened, edited, synchronize, reopened]
jobs:
commitlint:
name: Check commit messages
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: pnpm/action-setup@v6
with:
version: 9
- uses: actions/setup-node@v6
with:
node-version: 20
cache: pnpm
- run: pnpm install --frozen-lockfile
- name: Lint commits
run: |
pnpm dlx commitlint \
--from ${{ github.event.pull_request.base.sha }} \
--to ${{ github.event.pull_request.head.sha }} \
--verbose