mirror of
https://github.com/Thream/socketio-jwt.git
synced 2024-07-21 09:38:31 +02:00
21 lines
456 B
YAML
21 lines
456 B
YAML
# For more information see: https://github.com/marketplace/actions/commit-linter
|
|
|
|
name: 'Lint Commit Messages'
|
|
|
|
on:
|
|
push:
|
|
branches: [master, develop]
|
|
pull_request:
|
|
branches: [master, develop]
|
|
|
|
jobs:
|
|
commitlint:
|
|
runs-on: 'ubuntu-latest'
|
|
steps:
|
|
- uses: 'actions/checkout@v2.3.4'
|
|
with:
|
|
fetch-depth: 0
|
|
- uses: 'wagoid/commitlint-github-action@v3.1.4'
|
|
with:
|
|
configFile: '.commitlintrc.json'
|