From e7e8a4326b026175886f44b3afd9135c50133dd8 Mon Sep 17 00:00:00 2001 From: Chance Strickland Date: Fri, 13 Aug 2021 08:51:01 -0700 Subject: [PATCH] use npm7 in test action --- .github/workflows/test.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7a4e08ca..aeab9582 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,6 +17,10 @@ jobs: with: node-version: ${{ matrix.node-version }} + # https://github.com/actions/setup-node/issues/213#issuecomment-833724757 + - name: Install npm v7 + run: npm i -g npm@7 --registry=https://registry.npmjs.org + - name: Install dependencies run: npm ci