Skip to content

release: v0.6.0

release: v0.6.0 #25

Workflow file for this run

name: PR Commit Lint
on:
pull_request:
branches: [main, dev]
jobs:
lint:
name: PR / Commit Lint
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Lint commits (PR range)
run: |
bun run scripts/release-meta.ts \
--mode lint \
--from-ref "${{ github.event.pull_request.base.sha }}" \
--to "${{ github.event.pull_request.head.sha }}"