Skip to content

chore: simplified the 'build' script #33

chore: simplified the 'build' script

chore: simplified the 'build' script #33

Workflow file for this run

name: Commit message validation
on:
workflow_dispatch:
pull_request:
types: [opened, reopened]
push:
jobs:
commitlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- name: Install dependencies
run: npm ci
- name: Validdate the commit message
run: npx commitlint --from ${{ github.event.pull_request.base.sha }} --to ${{ github.event.pull_request.head.sha }} --verbose