From fc310d4670002ddf9add35ecab78c3da96cc8581 Mon Sep 17 00:00:00 2001 From: Peter <39418440+peter7z@users.noreply.github.com> Date: Thu, 31 Oct 2019 18:19:43 -0300 Subject: [PATCH] Fix README.md (#25) `restore-keys` had incorrect indentation. --- 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