-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bea16e6
commit 2e0d7de
Showing
1 changed file
with
14 additions
and
14 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,28 @@ | ||
name: Lint Commit Messages | ||
|
||
on: | ||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
|
||
cjobs: | ||
jobs: | ||
commitlint: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Check out the repository | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 # Ensures commit history is pulled | ||
- name: Check out the repository | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 # Ensures commit history is pulled | ||
|
||
- name: Install Node.js | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: 'lts/*' | ||
- name: Install Node.js | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: 'lts/*' | ||
|
||
- name: Install Dependencies | ||
run: yarn install | ||
- name: Install Dependencies | ||
run: yarn install | ||
|
||
- name: Lint Commit Messages | ||
run: npx commitlint --from=HEAD~1 --to=HEAD --verbose | ||
- name: Lint Commit Messages | ||
run: npx commitlint --from=HEAD~1 --to=HEAD --verbose |