Skip to content

feat: lease-first v1 PR 1 — schemas, transitions, and state loader #35

feat: lease-first v1 PR 1 — schemas, transitions, and state loader

feat: lease-first v1 PR 1 — schemas, transitions, and state loader #35

Workflow file for this run

name: Commitlint
on:
pull_request:
types: ['opened', 'edited', 'reopened', 'synchronize']
jobs:
commitlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- run: corepack enable
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version: "24"
- name: Install Dependencies
run: pnpm install --frozen-lockfile
- name: Validate PR commits with commitlint
run: pnpm exec commitlint --from ${{ github.event.pull_request.base.sha }} --to ${{ github.event.pull_request.head.sha }} --verbose