Skip to content

Commit

Permalink
Merge pull request #6 from cabinetoffice/NTRNL-257-add-npm-critical-d…
Browse files Browse the repository at this point in the history
…ependency-check-before-merging-to-main

Add npm critical dependency check before merging to main
  • Loading branch information
Mouhajer-CO authored Dec 7, 2023
2 parents 34c9d7a + c499fb8 commit 6ba8463
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/dependency-review.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Dependency Review

on:
push:
branches:
- main

permissions:
contents: read

jobs:
dependency-review:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Dependency Review
uses: actions/dependency-review-action@v3
with:
fail-on-severity: critical

0 comments on commit 6ba8463

Please sign in to comment.