feat(topic): add caption to topic3 circumcenter and orthocenter, modify topic19 franago to fagnano #363
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 |