File tree Expand file tree Collapse file tree 1 file changed +15
-1
lines changed
.github/actions/setup-frontend-environment Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -28,12 +28,15 @@ runs:
28
28
run : |
29
29
corepack enable
30
30
corepack prepare yarn@${{ inputs.yarn-version }} --activate
31
+ corepack yarn --version
32
+ which yarn
33
+ ls -l $(which yarn)
31
34
32
35
- name : Get yarn cache directory path
33
36
id : yarn-cache-dir-path
34
37
shell : bash
35
38
run : |
36
- dir=$(yarn config get cacheFolder --no-clipboard --no-color | tr -d '\n' | xargs)
39
+ dir=$(corepack yarn config get cacheFolder --no-clipboard --no-color | tr -d '\n' | xargs)
37
40
echo "dir=$dir" >> $GITHUB_OUTPUT
38
41
39
42
- name : Configure yarn cache
50
53
working-directory : " ${{ inputs.directory }}"
51
54
shell : bash
52
55
run : yarn install --immutable
56
+
57
+ - name : Debug Yarn version
58
+ shell : bash
59
+ run : yarn --version
60
+
61
+ - name : Debug PATH and corepack
62
+ shell : bash
63
+ run : |
64
+ echo $PATH
65
+ which yarn
66
+ corepack --version
You can’t perform that action at this time.
0 commit comments