From 3c7c3d794b87ea4f884450383923e0465efb369c Mon Sep 17 00:00:00 2001 From: Daan Vanden Bosch Date: Tue, 29 Sep 2020 18:37:13 +0200 Subject: [PATCH] Corrected GH actions yarn cache again. --- .github/workflows/deploy.yml | 12 ++++++------ .github/workflows/tests.yml | 8 ++++---- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index b0801e25..6e6970fd 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -8,19 +8,19 @@ jobs: runs-on: ubuntu-latest steps: + - name: Checkout + uses: actions/checkout@v2 + with: + persist-credentials: false + - name: Yarn cache uses: actions/cache@v2 env: cache-name: yarn-cache with: - path: .yarn + path: .yarn/cache key: ${{ runner.os }}-deploy-${{ env.cache-name }} - - name: Checkout - uses: actions/checkout@v2 - with: - persist-credentials: false - - name: Install dependencies uses: CultureHQ/actions-yarn@v1.0.1 with: diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 96cafcb7..43d5fc7f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -11,17 +11,17 @@ jobs: runs-on: ubuntu-latest steps: + - name: Checkout + uses: actions/checkout@v2 + - name: Yarn cache uses: actions/cache@v2 env: cache-name: yarn-cache with: - path: .yarn + path: .yarn/cache key: ${{ runner.os }}-tests-${{ env.cache-name }} - - name: Checkout - uses: actions/checkout@v2 - - name: Install dependencies uses: CultureHQ/actions-yarn@v1.0.1 with: