Skip to content

Fix a typo in Gitlab reporter #210

Fix a typo in Gitlab reporter

Fix a typo in Gitlab reporter #210

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 repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Checkout PR branch
run: |
git fetch --no-tags origin main
git fetch --no-tags origin +refs/pull/${{ github.event.pull_request.number }}/head:${{ github.event.pull_request.head.ref }}
git checkout ${{ github.event.pull_request.head.ref }}
- name: Install dependencies
run: npm ci
- name: Lint commit messages
run: npm run commit-messages:lint