Skip to content
This repository was archived by the owner on Mar 3, 2026. It is now read-only.

chore(main): release 0.6.0 #121

chore(main): release 0.6.0

chore(main): release 0.6.0 #121

Workflow file for this run

name: Commit Lint
on: [push, pull_request]
jobs:
commitlint:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
- uses: actions/setup-node@v5
with:
node-version: latest
- name: Install dependencies
run: npm ci
- name: Validate current commit (last commit)
if: github.event_name == 'push'
run: npx commitlint --from HEAD~1 --to HEAD --verbose
- name: Validate PR commits
if: github.event_name == 'pull_request'
run: npx commitlint --from ${{ github.event.pull_request.base.sha }} --to ${{ github.event.pull_request.head.sha }} --verbose