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 ac7031f commit 9828d6cCopy full SHA for 9828d6c
appveyor.yml
@@ -36,6 +36,9 @@ platform:
36
37
install:
38
- ps: Install-Product node $env:nodejs_version $env:platform
39
+ - ps: |
40
+ (New-Object Net.WebClient).DownloadFile("https://yarnpkg.com/latest.msi", "$env:temp\yarn.msi")
41
+ cmd /c start /wait msiexec.exe /i $env:temp\yarn.msi /quiet /qn /norestart
42
43
build: off
44
@@ -46,4 +49,5 @@ skip_commits:
46
49
test_script:
47
50
- node --version
48
51
- npm --version
52
+ - yarn --version
53
- bash tasks/e2e-%test_suite%.sh
0 commit comments