소스 검색

Merge pull request #14 from Deuchnord/commitlint

build: add commitlint configuration
tags/v0.2.3
Jérôme Deuchnord 4 년 전
committed by GitHub
부모
커밋
33c0370e9f
No known key found for this signature in database GPG 키 ID: 4AEE18F83AFDEB23
2개의 변경된 파일22개의 추가작업 그리고 0개의 파일을 삭제
  1. +21
    -0
      .github/workflows/commitlint.yml
  2. +1
    -0
      commitlint.config.js

+ 21
- 0
.github/workflows/commitlint.yml 파일 보기

@@ -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


+ 1
- 0
commitlint.config.js 파일 보기

@@ -0,0 +1 @@
module.exports = {extends: ['@commitlint/config-conventional']}

불러오는 중...
취소
저장