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