Skip to content

Commit 4b1999e

Browse files
committed
fix: update Turbo cache path in GitHub Action configuration
Modified the cache path in the node-setup action to include all instances of `.turbo` directories, improving cache efficiency for Turbo builds. Signed-off-by: Odin Thomas Rochmann <[email protected]>
1 parent 22dcec9 commit 4b1999e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/actions/node-setup/action.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@ runs:
2525
if: ${{ inputs.turbo-cache == 'true' }}
2626
uses: actions/cache@v4
2727
with:
28-
path: .turbo
28+
path: |
29+
.turbo
30+
**/.turbo
2931
key: ${{ runner.os }}-turbo-${{ steps.pnpm-lock-hash.outputs.hash }}
3032
restore-keys: |
3133
${{ runner.os }}-turbo-

0 commit comments

Comments
 (0)