diff options
| author | XhmikosR <[email protected]> | 2021-02-08 21:41:10 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-02-08 21:41:10 +0200 |
| commit | c93d754d35eadf6cb81a8fccef9ce091ea4f28c9 (patch) | |
| tree | 2fbf0a8ba8a8a2cb2c388d49213b147552dcecdc /.github/workflows/bundlewatch.yml | |
| parent | 6d34d93d6924d7f6ae348dbf81963cb23ff75d51 (diff) | |
| download | bootstrap-c93d754d35eadf6cb81a8fccef9ce091ea4f28c9.tar.xz bootstrap-c93d754d35eadf6cb81a8fccef9ce091ea4f28c9.zip | |
CI: remove the cache fallback and shorten cache key (#33012)
Diffstat (limited to '.github/workflows/bundlewatch.yml')
| -rw-r--r-- | .github/workflows/bundlewatch.yml | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/.github/workflows/bundlewatch.yml b/.github/workflows/bundlewatch.yml index b2bd5eed5..bebf01351 100644 --- a/.github/workflows/bundlewatch.yml +++ b/.github/workflows/bundlewatch.yml @@ -27,10 +27,9 @@ jobs: uses: actions/cache@v2 with: path: ~/.npm - key: ${{ runner.os }}-node-v${{ env.NODE }}-${{ hashFiles('package.json') }}-${{ hashFiles('package-lock.json') }} + key: ${{ runner.os }}-node-${{ env.NODE }}-${{ hashFiles('package.json') }}-${{ hashFiles('package-lock.json') }} restore-keys: | - ${{ runner.os }}-node-v${{ env.NODE }}-${{ hashFiles('package.json') }}-${{ hashFiles('package-lock.json') }} - ${{ runner.os }}-node-v${{ env.NODE }}- + ${{ runner.os }}-node-${{ env.NODE }}-${{ hashFiles('package.json') }}-${{ hashFiles('package-lock.json') }} - name: Install npm dependencies run: npm ci |
