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 79438a6 commit 91d1886Copy full SHA for 91d1886
.github/workflows/test.yml
@@ -26,6 +26,19 @@ jobs:
26
with:
27
node-version: '14'
28
29
+ - name: Get yarn cache directory path
30
+ id: yarn-cache-dir-path
31
+ run: echo "::set-output name=dir::$(yarn cache dir)"
32
+
33
+ - name: Cache yarn dependencies
34
+ uses: actions/cache@v2
35
+ id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
36
+ with:
37
+ path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
38
+ key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
39
+ restore-keys: |
40
+ ${{ runner.os }}-yarn-
41
42
- name: Verify via smart contract
43
run: |
44
yarn install
0 commit comments