Skip to content

chore(deps-dev): bump vitest from 3.2.4 to 4.1.0 #148

chore(deps-dev): bump vitest from 3.2.4 to 4.1.0

chore(deps-dev): bump vitest from 3.2.4 to 4.1.0 #148

Workflow file for this run

name: Commitlint
on:
pull_request:
types: [opened, edited, synchronize, reopened]
concurrency:
group: commitlint-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint-commits:
runs-on: ubuntu-latest
timeout-minutes: 10
permissions:
contents: read
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 10
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version: 22
cache: pnpm
cache-dependency-path: pnpm-lock.yaml
- name: Install
run: pnpm install --frozen-lockfile
- name: Commitlint commits in PR
run: npx commitlint --from HEAD~${{ github.event.pull_request.commits }} --to HEAD
- name: Commitlint PR title
run: echo '${{ github.event.pull_request.title }}' | npx commitlint