-
Notifications
You must be signed in to change notification settings - Fork 26
78 lines (68 loc) · 2.1 KB
/
pr.yml
File metadata and controls
78 lines (68 loc) · 2.1 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
name: PR
on:
pull_request:
branches: [ main ]
jobs:
setupcheck:
name: Setup Check
runs-on: windows-2022
steps:
- uses: actions/checkout@v4
- name: yarn install
run: yarn install
- name: beachball check
run: npx beachball check --verbose --changehint "::error::Run `yarn change` from root of repo to generate a change file."
call-runcodegen:
name: Run CodeGen
needs: setupcheck
uses: ./.github/workflows/template-runcodegen.yml
with:
vmImage: windows-2022
call-buildexample:
name: Build Example
needs: setupcheck
strategy:
fail-fast: true
matrix:
exampleName: ['example', 'examplenuget'] # build both examples
uses: ./.github/workflows/template-buildexample.yml
with:
vmImage: windows-2022
exampleName: ${{ matrix.exampleName }}
call-testcli:
name: Test CLI (VS 2022)
needs: setupcheck
strategy:
fail-fast: true
matrix:
rnwVersion: ['latest', 'v0.78-stable', 'v0.72-stable'] # test *key* versions that use VS 2022. aka any RNW version >= 0.72 used by supported partners and/or Active/Maintenance from https://microsoft.github.io/react-native-windows/support
uses: ./.github/workflows/template-testcli.yml
with:
vmImage: windows-2022
rnwVersion: ${{ matrix.rnwVersion }}
useRnwWindowsInit: ${{ matrix.rnwVersion == 'v0.72-stable' }}
call-buildnpmpackage:
name: Build NPM Package
needs: setupcheck
uses: ./.github/workflows/template-buildnpmpackage.yml
with:
vmImage: windows-2022
call-buildrnx:
name: Build RNX
needs: setupcheck
strategy:
fail-fast: true
matrix:
configuration: ['Release']
platform: ['x64']
uses: ./.github/workflows/template-buildrnx.yml
with:
vmImage: windows-2022
configuration: ${{ matrix.configuration }}
platform: ${{ matrix.platform }}
prcheck:
name: Successful PR Check
runs-on: ubuntu-latest
needs: [setupcheck, call-runcodegen, call-testcli, call-buildnpmpackage, call-buildrnx]
steps:
- uses: actions/checkout@v4