diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index af6d287e42e1c748fae3736d03669ba8d309ad63..c237a80f56abf57e68cd2d51a9a4d25c1f6e9340 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -36,7 +36,9 @@ jobs: - name: Set dependencies cache uses: actions/cache@v2 with: - path: ${{ steps.yarn-cache.outputs.dir }} + path: | + ~/cache + ${{ steps.yarn-cache.outputs.dir }} key: ${{ runner.os }}-node${{ matrix.node_version }}-${{ hashFiles('yarn.lock') }} restore-keys: | ${{ runner.os }}-node${{ matrix.node_version }}-${{ hashFiles('yarn.lock') }} diff --git a/.github/workflows/size-check.yml b/.github/workflows/size-check.yml index 02b01e6a1b79d292b74d8c6e323e2a5613ee6331..87fe4094814a0bd05995778a1be8defcd87ee3dd 100644 --- a/.github/workflows/size-check.yml +++ b/.github/workflows/size-check.yml @@ -27,7 +27,9 @@ jobs: - name: Set dependencies cache uses: actions/cache@v2 with: - path: ${{ steps.yarn-cache.outputs.dir }} + path: | + ~/cache + ${{ steps.yarn-cache.outputs.dir }} key: ${{ runner.os }}-node12-${{ hashFiles('yarn.lock') }} restore-keys: ${{ runner.os }}-node12-${{ hashFiles('yarn.lock') }} diff --git a/packages/playground/ssr/src/components/ssr-cover-image/ssr-cover-image.vue b/packages/playground/ssr/src/components/ssr-cover-image/ssr-cover-image.vue new file mode 100644 index 0000000000000000000000000000000000000000..24366b65b99379dec4fbf3553faf383a5a13d6e7 --- /dev/null +++ b/packages/playground/ssr/src/components/ssr-cover-image/ssr-cover-image.vue @@ -0,0 +1,3 @@ + \ No newline at end of file diff --git a/packages/playground/ssr/src/components/ssr-cover-view/ssr-cover-view.vue b/packages/playground/ssr/src/components/ssr-cover-view/ssr-cover-view.vue new file mode 100644 index 0000000000000000000000000000000000000000..7a022601725c123234c7ec59ab7e318a8291bfd0 --- /dev/null +++ b/packages/playground/ssr/src/components/ssr-cover-view/ssr-cover-view.vue @@ -0,0 +1,3 @@ + \ No newline at end of file diff --git a/packages/playground/ssr/src/pages/index/index.vue b/packages/playground/ssr/src/pages/index/index.vue index 94ff3b0c97178e12ab578c0878c9627e63eb2dbd..f9e70e8cb80c5450de35ea1a255b9dc4368aeb2d 100644 --- a/packages/playground/ssr/src/pages/index/index.vue +++ b/packages/playground/ssr/src/pages/index/index.vue @@ -1,4 +1,6 @@