From d06246f4a6cb38bd0c7bfd14c4c56f2386d751de Mon Sep 17 00:00:00 2001 From: Stuart Hendren Date: Tue, 10 Aug 2021 12:09:59 +0000 Subject: [PATCH] fix(ci): fix for release job in ci --- .github/workflows/ci.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bac1ccb..347dc15 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -202,6 +202,14 @@ jobs: node-version: ${{ env.NODE_VERSION }} - name: npm 7 run: npm i -g npm@7 --registry=https://registry.npmjs.org + - name: Restore dependencies + uses: actions/cache@v2 + id: cache-dependencies + with: + path: node_modules + key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }} + restore-keys: | + ${{ runner.os }}-npm- - name: Download build artifacts uses: actions/download-artifact@v2 with: