Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit afb1419

Browse files
committedSep 15, 2021
Readd cache step.
1 parent de9b5b5 commit afb1419

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed
 

‎.github/workflows/ci.yaml

+8-8
Original file line numberDiff line numberDiff line change
@@ -108,14 +108,14 @@ jobs:
108108
with:
109109
node-version: "14"
110110

111-
# - name: Fetch dependencies from cache
112-
# id: cache-yarn
113-
# uses: actions/cache@v2
114-
# with:
115-
# path: "**/node_modules"
116-
# key: yarn-build-${{ hashFiles('**/yarn.lock') }}
117-
# restore-keys: |
118-
# yarn-build-
111+
- name: Fetch dependencies from cache
112+
id: cache-yarn
113+
uses: actions/cache@v2
114+
with:
115+
path: "**/node_modules"
116+
key: yarn-build-${{ hashFiles('**/yarn.lock') }}
117+
restore-keys: |
118+
yarn-build-
119119
120120
- name: Install dependencies
121121
# if: steps.cache-yarn.outputs.cache-hit != 'true'

0 commit comments

Comments
 (0)
Please sign in to comment.