Skip to content

ci: added a comment #424

ci: added a comment

ci: added a comment #424

Workflow file for this run

name: commit-linter
on:
pull_request:
types: ['opened', 'edited', 'reopened', 'synchronize']
#this is a test comment
jobs:
commitlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install CommitLint and Dependencies
run: npm install @commitlint/config-conventional @commitlint/cli
- name: Lint Commits
run: |
first_commit=${{ github.event.pull_request.base.sha }}
last_commit=${{ github.event.pull_request.head.sha }}
npx commitlint --from $first_commit --to $last_commit -V