diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index d470cfc96..4898e160d 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -88,10 +88,10 @@ jobs:
uses: actions/cache@v2
with:
path: "**/node_modules"
- key: cache-node_modules-${{ hashFiles('**/yarn.lock') }}-${{ github.run_id }}
+ key: cache-node_modules-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}-${{ github.run_id }}
restore-keys: |
- cache-node_modules-${{ hashFiles('**/yarn.lock') }}-${{ github.run_id }}
- cache-node_modules-${{ hashFiles('**/yarn.lock') }}-
+ cache-node_modules-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}-${{ github.run_id }}
+ cache-node_modules-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}-
- name: Install NPM Dependencies
run: yarn install --prefer-offline --frozen-lockfile --ignore-engines --registry https://registry.npmjs.org --network-timeout 300000
diff --git a/examples/fast-build/src/components/Counter.vue b/examples/fast-build/src/components/Counter.vue
new file mode 100644
index 000000000..d36776319
--- /dev/null
+++ b/examples/fast-build/src/components/Counter.vue
@@ -0,0 +1,24 @@
+
+ {{ count }}
+
+