From d676b6c35452572148a1e21489c7eead1fd87012 Mon Sep 17 00:00:00 2001 From: Chris Patterson Date: Thu, 31 Oct 2019 13:01:04 -0400 Subject: [PATCH] Update README.md --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index acd7cee..afe1c0d 100644 --- a/README.md +++ b/README.md @@ -35,11 +35,13 @@ jobs: steps: - uses: actions/checkout@v1 - - name: Cache node_modules + - name: Cache node modules uses: actions/cache@preview with: path: node_modules - key: ${{ runner.os }}-node + key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} + restore-keys: | + ${{ runner.os }}-node- - name: Install Dependencies run: npm install