forked from react-native-webview/react-native-webview
-
Notifications
You must be signed in to change notification settings - Fork 8
55 lines (44 loc) · 1.52 KB
/
windows-ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
name: Windows CI
on: [pull_request]
jobs:
run-windows-tests:
name: Build & run tests
runs-on: windows-2022
steps:
- uses: actions/checkout@v3
name: Checkout Code
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '^14'
cache: 'yarn'
- name: Setup MSBuild
uses: microsoft/setup-msbuild@v1.1.3
with:
vs-version: '[17.0,)'
msbuild-architecture: x64
- name: Install node modules
run: yarn --pure-lockfile
- name: yarn build
run: |
yarn build
yarn tsc
- name: Build x64 release
shell: powershell
run: yarn windows --release --no-packager --no-deploy --logging
# Workaround for a bug in package searching during deploy.
# The deploy script only searches windows/{*/bin/x64/Release,Release/*}, but the build step above placed the packages at windows/x64/Release.
# Copy the packages to Windows/Release before deploying.
- name: Deploy
shell: powershell
run: |
Copy-Item -Path example\windows\x64\Release -Recurse -Destination example\windows\
npx react-native run-windows --arch x64 --release --root example --logging --no-build --no-packager --deploy-from-layout
- name: Start Appium server
shell: powershell
run: Start-Process PowerShell -ArgumentList "yarn appium"
- name: Start React server
shell: powershell
run: Start-Process PowerShell -ArgumentList "yarn start"
- name: Run tests
run: yarn test:windows