chore(repo): use npx over yarn for audit checks (#11096)

This commit is contained in:
Miroslav Jonaš 2022-07-11 13:04:32 +02:00 committed by GitHub
parent 8683d364f8
commit 4a3a223d07
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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' }}