chore: bump @commitlint/types from 19.0.0 to 19.0.3 (#68) #104
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: QA Checks | |
on: | |
push: | |
branches-ignore: | |
- dependabot/** | |
jobs: | |
qa-checks: | |
name: QA Checks | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4.1.1 | |
- name: Install Pre-Commit and the Hooks | |
run: | | |
pipx install pre-commit | |
npm install | |
- name: Run the Hooks for QA Checks | |
run: npm run pre-commit | |
commitlint: | |
name: Check Commit Messages | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4.1.1 | |
- name: Setup and Run Commitlint | |
uses: wagoid/commitlint-github-action@v5.4.5 |