diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index acc0df3..6847218 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -17,13 +17,10 @@ jobs: - name: Enable Corepack run: | corepack enable - - name: Get yarn cache directory path - id: yarn-cache-dir-path - run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT - name: Restore cache uses: actions/cache@v4 with: - path: ${{ steps.yarn-cache-dir-path.outputs.dir }} + path: .yarn/cache key: ${{ runner.os }}-ui-${{ hashFiles('**/yarn.lock') }} restore-keys: | ${{ runner.os }}-ui- @@ -49,13 +46,10 @@ jobs: - name: Enable Corepack run: | corepack enable - - name: Get yarn cache directory path - id: yarn-cache-dir-path - run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT - name: Restore cache uses: actions/cache@v4 with: - path: ${{ steps.yarn-cache-dir-path.outputs.dir }} + path: .yarn/cache key: ${{ runner.os }}-ui-${{ hashFiles('**/yarn.lock') }} restore-keys: | ${{ runner.os }}-ui-