From e865076937f0f164909d8eb0710a6a557ff00aa8 Mon Sep 17 00:00:00 2001 From: Andrew Bradley Date: Sun, 11 Jul 2021 23:06:58 -0400 Subject: [PATCH] make sure packaging step's npm cache and testing step's npm cache are not shared --- .github/workflows/continuous-integration.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 9b0e6b5c3..e279668f4 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -27,8 +27,8 @@ jobs: uses: actions/cache@v2 with: path: temp/npm-cache - key: npm-cache-ubuntu-${{ hashFiles('package-lock.json') }} - restore-keys: npm-cache-ubuntu- + key: npm-cache-packaging-${{ hashFiles('package-lock.json') }} + restore-keys: npm-cache-packaging- # lint, build, test - run: npm ci - run: npm run lint