microsoft/vscode-react-native
Publicmirrored fromhttps://github.com/microsoft/vscode-react-nativeAvailable
.ci/smoke/smoke-tests-windows.yml
27lines · modecode
| 1 | trigger: |
| 2 | - none |
| 3 | pr: |
| 4 | - none |
| 5 | |
| 6 | variables: |
| 7 | vswdbotLogin: vswdbot |
| 8 | appiumVersion: 1.21.0 |
| 9 | expoCLIVersion: latest |
| 10 | smokeTestDirectory: test/smoke |
| 11 | |
| 12 | jobs: |
| 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 | |