chore: more aggressive cache for CI (#1839)

This commit is contained in:
Huang Xin
2025-08-19 16:21:20 +08:00
committed by GitHub
parent ec0b44fb9f
commit 5137c08204
2 changed files with 5 additions and 2 deletions
+4 -2
View File
@@ -57,8 +57,10 @@ jobs:
uses: actions/cache@v4
with:
path: apps/readest-app/.next/cache
key: nextjs-${{ runner.os }}-${{ hashFiles('apps/readest-app/package.json', 'pnpm-lock.yaml') }}
restore-keys: nextjs-${{ runner.os }}-
key: nextjs-${{ matrix.config.platform }}-${{ github.sha }}-${{ hashFiles('pnpm-lock.yaml') }}
restore-keys: |
nextjs-${{ matrix.config.platform }}-${{ github.sha }}-
nextjs-${{ matrix.config.platform }}-
- name: install Dependencies
working-directory: apps/readest-app