nvim/pack/acp/start/nvim-lspconfig/.github/workflows/commit_lint.yml

13 lines
410 B
YAML
Raw Normal View History

2024-04-06 13:39:53 +00:00
on: [pull_request]
jobs:
lint-commits:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- run: npm install --save-dev @commitlint/{cli,config-conventional}
- run: |
echo "module.exports = { extends: ['@commitlint/config-conventional'] };" > commitlint.config.js
- run: npx commitlint --from HEAD~1 --to HEAD --verbose