From 2717dabb070a9c5a071b78d6733c0077352ac5df Mon Sep 17 00:00:00 2001 From: Nathan Youngman <4566+nathany@users.noreply.github.com> Date: Thu, 31 Oct 2019 14:35:48 -0600 Subject: [PATCH] Readme: fix restore-keys indentation This caused me some pain trying to identify the issue, but the other examples all have `restore-keys` indented. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index afe1c0d..11b7970 100644 --- a/README.md +++ b/README.md @@ -40,8 +40,8 @@ jobs: with: path: node_modules key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} - restore-keys: | - ${{ runner.os }}-node- + restore-keys: | + ${{ runner.os }}-node- - name: Install Dependencies run: npm install