From 602b36f1779284782de2e70d666a65433715d4a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kh=E1=BA=A3i?= Date: Sat, 24 Jul 2021 08:22:22 +0700 Subject: [PATCH] Remove uses of undefined variables from examples --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 87e4274..8f37d10 100644 --- a/README.md +++ b/README.md @@ -104,9 +104,9 @@ jobs: cache-name: cache-pnpm-modules with: path: ~/.pnpm-store - key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ matrix.node-version }}-${{ hashFiles('**/pnpm-lock.yaml') }} + key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }} restore-keys: | - ${{ runner.os }}-build-${{ env.cache-name }}-${{ matrix.node-version }}- + ${{ runner.os }}- - uses: pnpm/action-setup@v2.0.1 with: