From 36aca4de622bfc995e35cd2f2772145e171283b5 Mon Sep 17 00:00:00 2001 From: ignaciosantise Date: Fri, 12 Apr 2024 16:02:56 -0300 Subject: [PATCH] chore: solved yarn cache issue --- .github/actions/ci-setup/action.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/actions/ci-setup/action.yml b/.github/actions/ci-setup/action.yml index facc9498..8c30ab6f 100644 --- a/.github/actions/ci-setup/action.yml +++ b/.github/actions/ci-setup/action.yml @@ -15,12 +15,12 @@ runs: node-version: 18 - name: Set yarn.lock path - id: yarn-hash - run: | - echo "Root path: ${{ inputs.root-path }}" - echo "yarn.lock path: ${{ inputs.root-path }}/yarn.lock" - echo "File exists: $(test -f "${{ inputs.root-path }}/yarn.lock" && echo "yes" || echo "no")" - echo "yarnlock_path=${{ inputs.root-path }}/yarn.lock" >> "$GITHUB_ENV" + id: yarn-hash + run: | + echo "Root path: ${{ inputs.root-path }}" + echo "yarn.lock path: ${{ inputs.root-path }}/yarn.lock" + echo "File exists: $(test -f "${{ inputs.root-path }}/yarn.lock" && echo "yes" || echo "no")" + echo "yarnlock_path=${{ inputs.root-path }}/yarn.lock" >> "$GITHUB_ENV" - name: Cache dependencies id: yarn-cache