We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 73276f1 commit f050174Copy full SHA for f050174
.github/actions/setup-frontend-environment/action.yml
@@ -43,15 +43,15 @@ runs:
43
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
44
key: ${{ runner.os }}-node-${{ inputs.node-version }}-${{ hashFiles('**/yarn.lock') }}
45
46
+ - name: Print Yarn cache size
47
+ shell: bash
48
+ run: du -d 0 -h ${{ steps.yarn-cache-dir-path.outputs.dir }}
49
+
50
- name: Install yarn dependencies
51
working-directory: "${{ inputs.directory }}"
52
shell: bash
53
run: yarn install --immutable
54
- - name: Print Yarn cache size
- shell: bash
- run: du -d 0 -h ${{ steps.yarn-cache-dir-path.outputs.dir }}
-
55
- name: Debug Yarn version
56
57
run: yarn --version
0 commit comments