Skip to content

fix: updated EntitlementsCheck return type #507

fix: updated EntitlementsCheck return type

fix: updated EntitlementsCheck return type #507

Workflow file for this run

name: commitlint
on:
push:
branches: ['main']
pull_request:
types: [opened, synchronize]
jobs:
tests:
name: Run commitlint
timeout-minutes: 15
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
steps:
- name: Check out code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Fetch main branch
run: git fetch --no-tags --depth=1 origin main
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 18.x.x
- name: Install dependencies
run: npm install
- name: commitlint
run: npx commitlint --from ${{ github.event.pull_request.base.sha }} --to ${{ github.event.pull_request.head.sha }} --verbose