We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2e5add commit a04630dCopy full SHA for a04630d
.github/actions/cache/action.yml
@@ -53,12 +53,14 @@ runs:
53
run: echo "::set-output name=dir::$(yarn config get cacheFolder)"
54
55
- name: Restore Yarn
56
+ id: yarn-cache
57
uses: actions/cache@v2
58
with:
59
path: ${{ steps.yarn-cache-dir.outputs.dir || '/home/runner/work/api-clients-automation/api-clients-automation/.yarn/cache' }}
60
key: node-cache-${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}
61
62
- name: Install JavaScript dependencies
63
+ if: steps.yarn-cache.outputs.cache-hit != 'true'
64
shell: bash
65
run: yarn install
66
0 commit comments