File tree Expand file tree Collapse file tree 1 file changed +48
-0
lines changed
Expand file tree Collapse file tree 1 file changed +48
-0
lines changed Original file line number Diff line number Diff line change 1+ name : CI Tests
2+
3+ on :
4+ pull_request :
5+ types : [opened, edited]
6+ workflow_dispatch :
7+
8+ jobs :
9+ android-new-arch-test :
10+ runs-on : self-hosted
11+ steps :
12+ - uses : actions/checkout@v3
13+
14+ - name : Run Android Tests
15+ run : |
16+ npm install
17+ npm run test:android
18+
19+
20+ ios-new-arch-test :
21+ runs-on : self-hosted
22+ steps :
23+ - uses : actions/checkout@v3
24+
25+ - name : Run iOS Tests
26+ run : |
27+ npm install
28+ npm run test:ios
29+
30+ android-old-arch-test :
31+ runs-on : self-hosted
32+ steps :
33+ - uses : actions/checkout@v3
34+
35+ - name : Run Android Tests
36+ run : |
37+ npm install
38+ npm run test:oldArch:android
39+
40+ ios-old-arch-test :
41+ runs-on : self-hosted
42+ steps :
43+ - uses : actions/checkout@v3
44+
45+ - name : Run iOS Tests
46+ run : |
47+ npm install
48+ npm run test:oldArch:ios
You can’t perform that action at this time.
0 commit comments