Skip to content

chore: bump the minor-and-patch group in /fluid-server with 8 updates #259

chore: bump the minor-and-patch group in /fluid-server with 8 updates

chore: bump the minor-and-patch group in /fluid-server with 8 updates #259

Workflow file for this run

name: Commitlint
on:
pull_request:
jobs:
commitlint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Lint commits
run: pnpm exec commitlint --from ${{ github.event.pull_request.base.sha }} --to ${{ github.event.pull_request.head.sha }} --verbose