-
-
Notifications
You must be signed in to change notification settings - Fork 16
36 lines (29 loc) Β· 803 Bytes
/
Copy pathcommitlint.yml
File metadata and controls
36 lines (29 loc) Β· 803 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: Conventional Commits
on: [push]
jobs:
commitlint:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [18]
steps:
- name: Checkout π
uses: actions/checkout@master
with:
fetch-depth: 0
- name: Setup node env π
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node }}
- name: Cache node_modules π¦
uses: actions/cache@v5.0.5
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install dependencies β
run: npm ci
- name: Lint commit messages π
run: npx commitlint --from=HEAD~1