File tree Expand file tree Collapse file tree 1 file changed +39
-0
lines changed Expand file tree Collapse file tree 1 file changed +39
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Windows CI
2+ on : [pull_request]
3+
4+ jobs :
5+ run-windows-tests :
6+ name : Build & run tests
7+ runs-on : windows-2019
8+
9+ steps :
10+ - uses : actions/checkout@v2
11+ name : Checkout Code
12+
13+ - name : Setup Node.js
14+ uses : actions/setup-node@v1
15+ with :
16+ node-version : ' 12.9.1'
17+
18+ - name : Setup MSBuild
19+ uses : microsoft/setup-msbuild@v1
20+ with :
21+ vs-version : 16.8
22+
23+ - name : Install example modules
24+ run : |
25+ cd examples
26+ yarn --pure-lockfile
27+ - name : Build release
28+ run : |
29+ cd examples
30+ npx react-native run-windows --release --no-packager --no-launch --logging
31+ - name : Start Appium server
32+ shell : powershell
33+ run : |
34+ cd examples
35+ Start-Process PowerShell -ArgumentList "yarn appium"
36+ - name : Run tests
37+ run : |
38+ cd examples
39+ yarn test:windows
You can’t perform that action at this time.
0 commit comments