fixup! Refactor(conventional-changelog): Drop q
from dependencies
#456
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Commitlint | |
on: | |
push: | |
branches-ignore: | |
- main | |
jobs: | |
commitlint: | |
runs-on: ubuntu-20.04 | |
timeout-minutes: 5 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 50 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
- name: Fetch main | |
run: git fetch --no-tags --depth=50 origin main | |
- name: Install dependencies | |
run: make install | |
- name: Commitlint | |
run: npx commitlint --color --verbose --from $(git merge-base origin/main HEAD) |