Skip to content

fix(deps): update dependency bootstrap to v5.3.3 #7

fix(deps): update dependency bootstrap to v5.3.3

fix(deps): update dependency bootstrap to v5.3.3 #7

Workflow file for this run

name: Check commit message format
on:
pull_request:
jobs:
commit-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
with:
fetch-depth: 0
- name: Setup node.js
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4
with:
node-version: '20'
cache: npm
- name: Install dependencies
run: npm ci
- name: Validate commits
run: |
npx commitlint --from ${{ github.event.pull_request.head.sha }}~${{ github.event.pull_request.commits }} --to ${{ github.event.pull_request.head.sha }} --verbose