Skip to content

feat(crypto): GCP / Azure / Vault KMS providers (Step 6.7c) #267

feat(crypto): GCP / Azure / Vault KMS providers (Step 6.7c)

feat(crypto): GCP / Azure / Vault KMS providers (Step 6.7c) #267

Workflow file for this run

name: Commitlint
on:
pull_request:
types: [opened, edited, synchronize, reopened]
jobs:
commitlint:
name: Check commit messages
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: pnpm/action-setup@v6
with:
version: 9
- uses: actions/setup-node@v6
with:
node-version: 20
cache: pnpm
- run: pnpm install --frozen-lockfile
- name: Lint commits
run: |
pnpm dlx commitlint \
--from ${{ github.event.pull_request.base.sha }} \
--to ${{ github.event.pull_request.head.sha }} \
--verbose