We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2f2cdc commit cc79e4aCopy full SHA for cc79e4a
1 file changed
.github/workflows/docs.yml
@@ -24,11 +24,11 @@ jobs:
24
- name: Checkout Repo
25
uses: actions/checkout@v3
26
27
- - name: Setup Node 14
+ - name: Setup Node 16
28
uses: actions/setup-node@v3
29
with:
30
# 选择要使用的 node 版本
31
- node-version: "14"
+ node-version: "16"
32
cache: "yarn"
33
cache-dependency-path: "doc/yarn.lock"
34
@@ -39,8 +39,8 @@ jobs:
39
40
path: doc/node_modules
41
key: ${{ runner.os }}-yarn-${{ hashFiles('doc/yarn.lock') }}
42
- restore-keys: |
43
- ${{ runner.os }}-yarn-
+ # restore-keys: |
+ # ${{ runner.os }}-yarn-
44
45
# 如果缓存没有命中,安装依赖
46
- if: ${{ steps.yarn-cache.outputs.cache-hit == false }}
0 commit comments