Skip to content

chore: release main #29

chore: release main

chore: release main #29

Workflow file for this run

name: Commits
on: pull_request
concurrency:
group: commitlint-${{ github.event.pull_request.number }}
cancel-in-progress: true
jobs:
lint:
name: Lint Commits
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- name: Install Dependencies
run: npm ci
- name: Run Commitlint
run: npx commitlint --from ${{ github.event.pull_request.head.sha }}~${{ github.event.pull_request.commits }} --to ${{ github.event.pull_request.head.sha }} --verbose