Skip to content

refactor(betterer 🔧): try to make rendering more predictable #17

refactor(betterer 🔧): try to make rendering more predictable

refactor(betterer 🔧): try to make rendering more predictable #17

Workflow file for this run

name: Lint Commit Messages
on: [pull_request]
permissions:
contents: read
pull-requests: read
jobs:
commitlint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: npm install
- name: Validate all commits from PR
run: npx commitlint --from ${{ github.event.pull_request.base.sha }} --to ${{ github.event.pull_request.head.sha }} --verbose