fix(deps): update common development tools (major) #5611
This file contains hidden or 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: Commit message linter | |
on: | |
pull_request: | |
branches: [ main ] | |
types: [ opened, synchronize ] | |
permissions: | |
contents: read | |
jobs: | |
check-commit-messages: | |
name: Check commit message format | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5 | |
with: | |
fetch-depth: 0 | |
- name: Set up Node | |
uses: ./.github/actions/setup-node | |
- name: Check commit messages | |
run: npx commitlint --from ${{ github.event.pull_request.base.sha }} --to ${{ github.event.pull_request.head.sha }} --verbose >> $GITHUB_STEP_SUMMARY |