fix: ️ cross-platform example

This commit is contained in:
Mel Massadian 2022-10-18 12:02:38 +02:00
parent c3b53f6a16
commit ed0172a253
No known key found for this signature in database
GPG Key ID: 032CCAB73B834D75

View File

@ -120,12 +120,12 @@ jobs:
- name: Get pnpm store directory
id: pnpm-cache
run: |
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
echo "::set-output name=pnpm_cache_dir::$(pnpm store path)"
- uses: actions/cache@v3
name: Setup pnpm cache
with:
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-