Skip to content

feat(led-545): HPOS compatibility #65

feat(led-545): HPOS compatibility

feat(led-545): HPOS compatibility #65

Workflow file for this run

# Making sure we only allow commits following the conventional commit format
name: Commitlint
on:
pull_request:
branches:
- main
- alpha
- beta
jobs:
commitlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: 18
- name: Install Dependencies
run: npm ci
- name: Validate commits with commitlint
run: npx commitlint --from ${{ github.event.pull_request.base.sha }} --to ${{ github.event.pull_request.head.sha }} --verbose