Skip to content

fix: bug pada undo redo #12

fix: bug pada undo redo

fix: bug pada undo redo #12

Workflow file for this run

name: Commit Check
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
lint-commits:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0 # penting supaya semua commit bisa dicek
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: npm install
- name: Check commit messages
run: npx commitlint --from=origin/main --to=HEAD