fix caching
This commit is contained in:
parent
e1500e8174
commit
9a27eab887
1 changed files with 9 additions and 11 deletions
|
@ -19,24 +19,22 @@ jobs:
|
|||
shell: bash
|
||||
run: echo "dir=$(pnpm store path)" >> ${GITHUB_OUTPUT}
|
||||
- uses: actions/cache@v3
|
||||
id: npm-cache
|
||||
id: pnpm-cache
|
||||
with:
|
||||
path: ${{ steps.npm-cache-dir.outputs.dir }}
|
||||
path: ${{ steps.pnpm-cache-dir.outputs.dir }}
|
||||
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-node-
|
||||
- name: restore pnpm cache
|
||||
uses: actions/cache/restore@v3
|
||||
with:
|
||||
path: ~/.pnpm-store
|
||||
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
|
||||
- name: pnpm install
|
||||
run: pnpm install
|
||||
- name: save pnpm cache
|
||||
uses: actions/cache/save@v3
|
||||
- uses: actions/cache/save@v3
|
||||
name: prune pnpm cache
|
||||
if: steps.pnpm-cache.outputs.cache-hit != 'true'
|
||||
with:
|
||||
path: ~/.pnpm-store
|
||||
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
|
||||
path: ${{ steps.pnpm-cache-dir.outputs.dir }}
|
||||
|
||||
|
||||
|
||||
- uses: actions/cache@v3
|
||||
with:
|
||||
path: ~/.nuget/packages
|
||||
|
|
Loading…
Reference in a new issue