Skip to content

Commit

Permalink
chore: solved yarn cache issue
Browse files Browse the repository at this point in the history
  • Loading branch information
ignaciosantise committed Apr 12, 2024
1 parent 4050a1b commit 36aca4d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/actions/ci-setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 36aca4d

Please sign in to comment.