From fdf7516cddb0ff30f815bb45662dbafd5dfdef50 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Omar=20L=C3=B3pez?= Date: Tue, 15 Feb 2022 12:18:14 -0700 Subject: [PATCH] CI turbo caching troubleshooting (#1862) # Conflicts: # .github/workflows/e2e.yml --- .github/workflows/e2e.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 9319bf49..bc48ffdb 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -68,9 +68,9 @@ jobs: uses: actions/cache@v2 with: path: .turbo - key: turbo-${{ github.job }}-${{ github.ref_name }}-${{ github.sha }} + key: turbo-${{ github.job }}-${{ github.event.pull_request.head.ref }}-${{ github.event.pull_request.head.sha }} restore-keys: | - turbo-${{ github.job }}-${{ github.ref_name }}- + turbo-${{ github.job }}-${{ github.event.pull_request.head.ref }}- - run: yarn - name: Cache playwright binaries uses: actions/cache@v2