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 b6c1d91 commit 3adbe4cCopy full SHA for 3adbe4c
.github/workflows/nodejs.yml
@@ -50,8 +50,9 @@ jobs:
50
- name: Security audit
51
run: npm run security
52
53
- - name: Check commit message
54
- uses: wagoid/commitlint-github-action@v5
+ - name: Validate PR commits with commitlint
+ if: github.event_name == 'pull_request'
55
+ run: npx commitlint --from ${{ github.event.pull_request.head.sha }}~${{ github.event.pull_request.commits }} --to ${{ github.event.pull_request.head.sha }} --verbose
56
57
test:
58
name: Test - ${{ matrix.os }} - Node v${{ matrix.node-version }}, Webpack ${{ matrix.webpack-version }}
0 commit comments