From af2d2ff1980534d8e18144278a09b7b3bb55a666 Mon Sep 17 00:00:00 2001 From: Ferenc Hammerl Date: Tue, 3 Jan 2023 13:34:55 +0100 Subject: [PATCH] Remove allow-list from audit Releases can be made or PRs can be merged even if the workflow is failing --- .github/workflows/audit.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/audit.yml b/.github/workflows/audit.yml index 58848e7a..bc81e562 100644 --- a/.github/workflows/audit.yml +++ b/.github/workflows/audit.yml @@ -32,8 +32,7 @@ jobs: run: npm run bootstrap - name: audit tools - # `|| npm audit` to pretty-print the output if vulnerabilies are found after filtering. - run: npm audit --audit-level=moderate --json | scripts/audit-allow-list || npm audit --audit-level=moderate + run: npm audit --audit-level=moderate - name: audit packages run: npm run audit-all