Skip to content

feat: use LambdaClient InvokeCommand to invoke handlers #21

feat: use LambdaClient InvokeCommand to invoke handlers

feat: use LambdaClient InvokeCommand to invoke handlers #21

Workflow file for this run

name: Commitlint
on:
pull_request:
types: [opened, edited, synchronize, reopened]
jobs:
commitlint:
runs-on: ubuntu-latest
name: Lint commit messages
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 18.x
- name: Install commitlint
run: npm install --no-save @commitlint/cli @commitlint/config-conventional
- name: Lint commits
run: |
npx commitlint \
--from ${{ github.event.pull_request.base.sha }} \
--to ${{ github.event.pull_request.head.sha }} \
--verbose