feat(topic): add caption and change point D and F on topic3 Centroid and Incenter & Excenter #372
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Commitlint | |
on: | |
pull_request: | |
types: ["opened", "edited", "reopened", "synchronize"] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install commitlint | |
run: | | |
npm install -g @commitlint/cli @commitlint/config-conventional | |
- name: Validate PR title with commitlint | |
if: github.event_name == 'pull_request' | |
run: echo '${{ github.event.pull_request.title }}' | commitlint --verbose |