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