Skip to content

Commit

Permalink
feat: adding commit checker
Browse files Browse the repository at this point in the history
  • Loading branch information
noble-varghese committed Dec 1, 2023
1 parent 0d6a80e commit 6272a40
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/commit-checker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: ConventionalCommitChecker

on: [pull_request, push]

jobs:
conventional-commits-checker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: '12.x'
- run: cd .github/conventionalcommits && npm install
- run: cd .github/conventionalcommits && npm run build --if-present

- name: conventional-commits-checker
id: hello
uses: ./.github/conventionalcommits/

0 comments on commit 6272a40

Please sign in to comment.