We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14bd133 commit caa9871Copy full SHA for caa9871
booster/.github/actions/php-auto-fix/action.yml
@@ -66,6 +66,20 @@ runs:
66
version: ${{ steps.pnpm-version.outputs.version }}
67
run_install: false
68
69
+ - name: Get pnpm store directory
70
+ id: pnpm-cache
71
+ shell: bash
72
+ run: |
73
+ echo "store=$(pnpm store path --silent)" >> $GITHUB_OUTPUT
74
+
75
+ - name: Cache pnpm store
76
+ uses: actions/cache@v3
77
+ with:
78
+ path: ${{ steps.pnpm-cache.outputs.store }}
79
+ key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
80
+ restore-keys: |
81
+ ${{ runner.os }}-pnpm-store-
82
83
- name: Get Composer Cache Directory
84
id: composer-cache
85
shell: bash
0 commit comments