From 8d9961269533005c3bc012f0bad7d33c432c746d Mon Sep 17 00:00:00 2001 From: Yury Shkoda Date: Tue, 18 Jan 2022 19:33:18 +0300 Subject: [PATCH] chore(ci/cd): add check npm audit step --- .github/workflows/build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f54ac6c..cb4eee7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -22,6 +22,8 @@ jobs: with: node-version: ${{ matrix.node-version }} cache: npm + - name: Check npm audit + run: npm audit --production --audit-level=low - name: Install Dependencies run: npm ci - name: Check code style