Skip to content

chore(deps): bump react-resizable-panels from 4.12.3 to 4.12.4 #8

chore(deps): bump react-resizable-panels from 4.12.3 to 4.12.4

chore(deps): bump react-resizable-panels from 4.12.3 to 4.12.4 #8

Workflow file for this run

name: Commit conventions
on:
pull_request:
types: [opened, edited, reopened, synchronize]
permissions:
contents: read
jobs:
conventions:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
ref: ${{ github.event.pull_request.head.sha }}
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: pnpm
- run: pnpm install --frozen-lockfile --ignore-scripts
- name: Check branch commits
env:
BASE_SHA: ${{ github.event.pull_request.base.sha }}
HEAD_SHA: ${{ github.event.pull_request.head.sha }}
run: pnpm exec commitlint --from "$BASE_SHA" --to "$HEAD_SHA" --verbose
- name: Check squash merge title
env:
PR_TITLE: ${{ github.event.pull_request.title }}
run: printf '%s\n' "$PR_TITLE" | pnpm exec commitlint --verbose