Skip to content

Commit d98d71b

Browse files
Merge pull request #57 from commitd/sh/55
fix(ci): fixes issue with ci script stopping the docs deploy
2 parents 8558cc6 + 93a2539 commit d98d71b

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,14 @@ jobs:
149149
uses: actions/setup-node@v1
150150
with:
151151
node-version: ${{ env.NODE_VERSION }}
152+
- name: Restore dependencies
153+
uses: actions/cache@v2
154+
id: cache-dependencies
155+
with:
156+
path: node_modules
157+
key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}
158+
restore-keys: |
159+
${{ runner.os }}-npm-
152160
- name: Download build artifacts
153161
uses: actions/download-artifact@v2
154162
with:

0 commit comments

Comments
 (0)