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 4de6bb1 commit b45a64fCopy full SHA for b45a64f
1 file changed
.github/workflows/ci-node.yml
@@ -53,6 +53,26 @@ on:
53
workflow_dispatch:
54
55
jobs:
56
+ dependency-review:
57
+ name: Dependency Review
58
+ if: ${{ github.event_name == 'pull_request' }}
59
+ runs-on: ubuntu-latest
60
+ permissions:
61
+ contents: read
62
+ pull-requests: write
63
+ steps:
64
+ - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
65
+ with:
66
+ persist-credentials: false
67
+
68
+ - uses: actions/dependency-review-action@a1d282b36b6f3519aa1f3fc636f609c47dddb294 # v5.0.0
69
70
+ fail-on-severity: low
71
+ license-check: false
72
+ vulnerability-check: true
73
+ comment-summary-in-pr: on-failure
74
+ show-patched-versions: true
75
76
commitlint:
77
name: Check commit messages
78
runs-on: ubuntu-latest
0 commit comments