We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8ac50b commit 9ae38f2Copy full SHA for 9ae38f2
1 file changed
.github/workflows/tests.yml
@@ -33,9 +33,9 @@ jobs:
33
- name: Install npm dependencies
34
run: npm clean-install
35
36
- - name: Validate current commit (last commit) with commitlint
+ - name: Validate pushed commits with commitlint
37
if: github.event_name == 'push'
38
- run: npx commitlint --last --verbose
+ run: npx commitlint --from ${{ github.event.before }} --to ${{ github.sha }} --verbose
39
40
- name: Validate PR commits with commitlint
41
if: github.event_name == 'pull_request'
0 commit comments