We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01894eb commit 5188f39Copy full SHA for 5188f39
.github/workflows/CI.yaml
@@ -48,9 +48,12 @@ jobs:
48
Remove-Item $path -Force
49
}
50
51
- where yarn || echo "✅ Yarn not found"
+ if (Get-Command yarn -ErrorAction SilentlyContinue) {
52
+ yarn --version
53
+ } else {
54
+ Write-Output "✅ Yarn not found"
55
+ }
56
-
57
- name: Remove Yarn on Linux/macOS
58
if: runner.os != 'Windows'
59
run: |
0 commit comments