Skip to content

fix: turn off unicorn/no-negated-condition #129

fix: turn off unicorn/no-negated-condition

fix: turn off unicorn/no-negated-condition #129

Workflow file for this run

name: Lint PR commit messages
on:
pull_request:
branches:
- main
permissions:
contents: read
jobs:
run-commitlint-on-pr:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: lts/*
- name: Install dependencies
run: npm install
- name: Validate all commits from PR
run: npx --no -- commitlint --from ${{ github.event.pull_request.base.sha }} --to ${{ github.event.pull_request.head.sha }} --verbose