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