chore(main): release 6.34.0 #1638
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: PR Title | |
on: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
- edited | |
merge_group: | |
types: [checks_requested] | |
jobs: | |
verify_title: | |
name: Verify Title | |
runs-on: ubuntu-latest | |
if: ${{github.event.action != 'checks_requested'}} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
cache: npm | |
- name: Install Packages | |
run: npm ci | |
- name: Run Commitlint | |
run: echo "${{github.event.pull_request.title}}" | npx commitlint |