fix(workflow): yarn cache path

This commit is contained in:
Ilia Mashkov
2026-01-14 12:39:30 +03:00
parent b209e051e5
commit 36ed19e195
4 changed files with 4 additions and 4 deletions

View File

@@ -33,7 +33,7 @@ jobs:
uses: actions/cache@v4 uses: actions/cache@v4
id: yarn-cache id: yarn-cache
with: with:
path: ~/.cache/yarn path: ${{ github.workspace }}/.yarn/cache
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: | restore-keys: |
${{ runner.os }}-yarn- ${{ runner.os }}-yarn-

View File

@@ -38,7 +38,7 @@ jobs:
uses: actions/cache@v4 uses: actions/cache@v4
id: yarn-cache id: yarn-cache
with: with:
path: ~/.cache/yarn path: ${{ github.workspace }}/.yarn/cache
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: | restore-keys: |
${{ runner.os }}-yarn- ${{ runner.os }}-yarn-

View File

@@ -45,7 +45,7 @@ jobs:
uses: actions/cache@v4 uses: actions/cache@v4
id: yarn-cache id: yarn-cache
with: with:
path: ~/.cache/yarn path: ${{ github.workspace }}/.yarn/cache
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: | restore-keys: |
${{ runner.os }}-yarn- ${{ runner.os }}-yarn-

View File

@@ -34,7 +34,7 @@ jobs:
uses: actions/cache@v4 uses: actions/cache@v4
id: yarn-cache id: yarn-cache
with: with:
path: ~/.cache/yarn path: ${{ github.workspace }}/.yarn/cache
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: | restore-keys: |
${{ runner.os }}-yarn- ${{ runner.os }}-yarn-