Skip to content

Commit 898e56e

Browse files
authored
chore: added github action for commitlint
* chore: added github action for commitlint
1 parent 45994a1 commit 898e56e

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/commitlint.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Commitlint
2+
on: [push, pull_request]
3+
4+
jobs:
5+
commit-lint:
6+
runs-on: ubuntu-latest
7+
env:
8+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
9+
steps:
10+
- uses: actions/checkout@v2
11+
with:
12+
fetch-depth: 0
13+
- uses: wagoid/[email protected]
14+
with:
15+
configFile: './.commitlintrc.yml'

0 commit comments

Comments
 (0)