From e046ece3cb66856a6544f9ea32efb25cb846f0de Mon Sep 17 00:00:00 2001 From: Matt Travi Date: Fri, 28 Apr 2023 16:33:03 -0500 Subject: [PATCH] ci(signatures): moved the audit step to the non-matrix stage since older versions of npm dont support `npm audit signatures` and instead simply audit for vulnerabilities --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0e907f70..e07e2603 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -36,7 +36,6 @@ jobs: node-version: ${{ matrix.node-version }} cache: npm - run: npm clean-install - - run: npm audit signatures - name: Ensure dependencies are compatible with the version of node run: npx ls-engines - run: npm run test:ci @@ -53,4 +52,5 @@ jobs: node-version: lts/* cache: npm - run: npm clean-install + - run: npm audit signatures - run: npm run lint