From 20312df4b4923f2947621ba3588ffcb71d078a57 Mon Sep 17 00:00:00 2001 From: Stuart Hendren Date: Thu, 9 Dec 2021 18:01:18 +0000 Subject: [PATCH] fix(ci): fixes issue with ci script stopping the docs deploy was missing the gh-pages as the npm cache was not restored - marked as feature so to test the deployment --- .github/workflows/ci.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 17bf7ff..dfd4fb6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -149,6 +149,14 @@ jobs: uses: actions/setup-node@v1 with: node-version: ${{ env.NODE_VERSION }} + - 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: