We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6eb2e5e commit cdc89c5Copy full SHA for cdc89c5
2 files changed
.github/workflows/ci.yml
@@ -6,6 +6,15 @@ on:
6
- 'master'
7
8
jobs:
9
+ conventional-commits:
10
+ name: Conventional Commits
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v4
14
+ - uses: webiny/action-conventional-commits@v1.3.1
15
+ with:
16
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
17
+
18
unit-tests:
19
name: Unit tests
20
strategy:
CONTRIBUTING.md
@@ -2,6 +2,10 @@
2
3
Thank you for your interest in contributing to vim-test! This document provides guidelines and information for contributors.
4
5
+## Commit Messages
+Use [conventional commits](https://www.conventionalcommits.org/en/v1.0.0/).
## Adding a New Test Runner
When adding support for a new test runner, follow these steps:
0 commit comments