Skip to content

Consider extraction errors as expected operational errors without crashing the engine #48

Consider extraction errors as expected operational errors without crashing the engine

Consider extraction errors as expected operational errors without crashing the engine #48

Workflow file for this run

name: Lint commit messages
on:
pull_request:
permissions:
contents: read
pull-requests: read
jobs:
commitlint:
runs-on: ubuntu-latest
steps:
- name: Checkout "main" branch
uses: actions/checkout@v4
with:
fetch-depth: 0
ref: ${{ github.event.pull_request.base.ref }}
- name: Checkout the current pull request branch
run: git checkout ${{ github.event.pull_request.head.ref }}
- name: Install dependencies
run: npm ci
- name: Lint commit messages
run: npm run commit-messages:lint