Ver a proveniência
Merge pull request #14 from Deuchnord/commitlint
build: add commitlint configuration
tags/v0.2.3
Jérôme Deuchnord
há 5 anos
committed by
GitHub
ascendente
cometimento
33c0370e9f
Não foi encontrada uma chave conhecida para esta assinatura, na base de dados
ID da chave GPG: 4AEE18F83AFDEB23
2 ficheiros alterados com
22 adições e
0 eliminações
-
.github/workflows/commitlint.yml
-
commitlint.config.js
|
|
@@ -0,0 +1,21 @@ |
|
|
|
name: Commit lint |
|
|
|
|
|
|
|
on: [push] |
|
|
|
|
|
|
|
jobs: |
|
|
|
build: |
|
|
|
runs-on: ubuntu-latest |
|
|
|
|
|
|
|
steps: |
|
|
|
- uses: actions/checkout@v1 |
|
|
|
- name: Use Node.js |
|
|
|
uses: actions/setup-node@v1 |
|
|
|
with: |
|
|
|
node-version: 13.x |
|
|
|
- name: setup |
|
|
|
run: | |
|
|
|
npm install -g @commitlint/cli @commitlint/config-conventional |
|
|
|
- name: commitlint |
|
|
|
run: | |
|
|
|
git log --format=%B -n 1 $GITHUB_SHA | commitlint |
|
|
|
|
|
|
@@ -0,0 +1 @@ |
|
|
|
module.exports = {extends: ['@commitlint/config-conventional']} |