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 c812994 commit 274a059Copy full SHA for 274a059
.github/workflows/nodejs.yml
@@ -57,8 +57,9 @@ jobs:
57
- name: Security audit
58
run: npm run security
59
60
- - name: Check commit message
61
- uses: wagoid/commitlint-github-action@v5
+ - name: Validate PR commits with commitlint
+ if: github.event_name == 'pull_request'
62
+ run: npx commitlint --from ${{ github.event.pull_request.head.sha }}~${{ github.event.pull_request.commits }} --to ${{ github.event.pull_request.head.sha }} --verbose
63
64
test:
65
name: Test - ${{ matrix.os }} - Node v${{ matrix.node-version }}, Webpack ${{ matrix.webpack-version }}
0 commit comments