Created
June 27, 2020 09:45
-
-
Save YonatanKra/e235873895b4a814119d5d2ebd36e1ff to your computer and use it in GitHub Desktop.
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: "Lint PR" | |
on: | |
pull_request: | |
types: | |
- opened | |
- edited | |
- synchronize | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: npm install @actions/core @actions/github @commitlint/config-conventional @commitlint/lint @commitlint/load | |
- name: Checks the PR title | |
run: node ./scripts/useTestTitle |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment