microsoft/vscode-react-native

Public

mirrored fromhttps://github.com/microsoft/vscode-react-nativeAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
966588ec9727654c4a2f065feb7333f61ae7ef85

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

.ci/smoke/smoke-tests-windows.yml

27lines · modecode

1trigger:
2 - none
3pr:
4 - none
5
6variables:
7 vswdbotLogin: vswdbot
8 appiumVersion: 1.21.0
9 expoCLIVersion: latest
10 smokeTestDirectory: test/smoke
11
12jobs:
13 - job: Windows
14 pool:
15 name: "React Native smoke tests - Windows"
16 timeoutInMinutes: 85
17 steps:
18 - checkout: self
19 clean: true
20 - bash: |
21 cd $APPDATA && cd ../Local
22 rm -rf ./Temp/metro-cache
23 rm -rf ./Temp/haste-map-metro-*
24 rm -rf ./Temp/react-native-*
25 rm -rf ./Yarn/Cache
26 displayName: Clear RN, Yarn cache
27 - template: smoke-tests-common-validation.yml
28