Skip to content

build(deps-dev): bump release-please from 16.14.2 to 16.14.3 in the minorandpatch group #449

build(deps-dev): bump release-please from 16.14.2 to 16.14.3 in the minorandpatch group

build(deps-dev): bump release-please from 16.14.2 to 16.14.3 in the minorandpatch group #449

Workflow file for this run

name: Commitlint
on:
pull_request:
types:
- opened
- reopened
- synchronize
- ready_for_review
jobs:
commitlint:
name: Lint commit messages
runs-on: ubuntu-latest
if: ${{ !github.event.pull_request.draft }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: lts/*
- uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('package-lock.json') }}
- name: Install npm packages
run: npm ci
- name: Validate PR commits with commitlint
run: npx commitlint --from ${{ github.event.pull_request.base.sha }} --verbose