feat(react-query): update to major v5 #11
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: PR Title | |
on: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
- edited | |
jobs: | |
verify_title: | |
name: Verify PR Title | |
runs-on: ubuntu-latest | |
if: ${{ github.event.action != 'edited' || github.event.changes.title }} | |
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 --no-install commitlint |