From f9ebb3983172d6c1409e0d762208b33e0b8235b5 Mon Sep 17 00:00:00 2001 From: Cedric van Putten Date: Tue, 19 Sep 2023 10:02:55 +0200 Subject: [PATCH] chore: add `.turbo` folders to build cache --- .github/actions/setup-cache/action.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/actions/setup-cache/action.yml b/.github/actions/setup-cache/action.yml index 3196f872..7f898c94 100644 --- a/.github/actions/setup-cache/action.yml +++ b/.github/actions/setup-cache/action.yml @@ -7,9 +7,13 @@ runs: - name: ♻️ Restore build cache uses: actions/cache@v3 with: - key: turbo-${{ runner.os }}-${{ github.workflow }}-${{ github.sha }} + key: turbo-TEST_1-${{ runner.os }}-${{ github.workflow }}-${{ github.sha }} restore-keys: | - turbo-${{ runner.os }}-${{ github.workflow }} - turbo-${{ runner.os }} + turbo-TEST_1-${{ runner.os }}-${{ github.workflow }} + turbo-TEST_1-${{ runner.os }} path: | node_modules/.cache/turbo + packages/*/.turbo + snackager/.turbo + snackpub/.turbo + website/.turbo