Skip to content

Commit

Permalink
feat(ci): conventional commits checker action
Browse files Browse the repository at this point in the history
Closes #20.
  • Loading branch information
leha-bot committed Sep 23, 2023
1 parent 5f11231 commit faf9bcc
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/commitlint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: commitlint
on:
push:
pull_request:
branches: [ master, dev ]

jobs:
commitlint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Commitlint
uses: remarkablemark/commitlint@v1

0 comments on commit faf9bcc

Please sign in to comment.