From 4a3a223d071a1fb91d77bc853490a15edae3587c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Jona=C5=A1?= Date: Mon, 11 Jul 2022 13:04:32 +0200 Subject: [PATCH] chore(repo): use npx over yarn for audit checks (#11096) --- .github/workflows/npm-audit.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/npm-audit.yml b/.github/workflows/npm-audit.yml index ccec1b8ec0..3e82d10e80 100644 --- a/.github/workflows/npm-audit.yml +++ b/.github/workflows/npm-audit.yml @@ -16,10 +16,10 @@ jobs: run: npx audit-ci --critical --report-type summary - name: Check lock file for invalid hosts - run: yarn lockfile-lint -s -n -p yarn.lock -a hosts yarn npm - + run: npx lockfile-lint -s -n -p yarn.lock -a hosts yarn npm + - name: Run Dependency confusion supply chain check - run: npx snync -d . + run: npx snync -d . - name: Report Status if: ${{ always() && github.repository_owner == 'nrwl' }}