@@ -110,6 +110,10 @@ describe('test workflow platformDeploy', () => {
110
110
steps : mocks . PLATFORM_DEPLOY__DEPLOY_CHECKLIST__STEP_MOCKS ,
111
111
runsOn : 'ubuntu-latest' ,
112
112
} ,
113
+ hybridApp : {
114
+ steps : mocks . PLATFORM_DEPLOY__HYBRID_APP__STEP_MOCKS ,
115
+ runsOn : 'ubuntu-latest' ,
116
+ } ,
113
117
} ;
114
118
const result = await act . runEvent ( 'push' , {
115
119
workflowFile : path . join ( repoPath , '.github' , 'workflows' , 'platformDeploy.yml' ) ,
@@ -121,6 +125,7 @@ describe('test workflow platformDeploy', () => {
121
125
122
126
assertions . assertVerifyActorJobExecuted ( result ) ;
123
127
assertions . assertDeployChecklistJobExecuted ( result , true ) ;
128
+ assertions . assertHybridAppJobExecuted ( result , true ) ;
124
129
assertions . assertAndroidJobExecuted ( result , true , false , true ) ;
125
130
assertions . assertDesktopJobExecuted ( result , true , false ) ;
126
131
assertions . assertIOSJobExecuted ( result , true , false , true ) ;
@@ -194,6 +199,10 @@ describe('test workflow platformDeploy', () => {
194
199
steps : mocks . PLATFORM_DEPLOY__DEPLOY_CHECKLIST__STEP_MOCKS ,
195
200
runsOn : 'ubuntu-latest' ,
196
201
} ,
202
+ hybridApp : {
203
+ steps : mocks . PLATFORM_DEPLOY__HYBRID_APP__STEP_MOCKS ,
204
+ runsOn : 'ubuntu-latest' ,
205
+ } ,
197
206
} ;
198
207
const result = await act . runEvent ( 'push' , {
199
208
workflowFile : path . join ( repoPath , '.github' , 'workflows' , 'platformDeploy.yml' ) ,
@@ -205,6 +214,7 @@ describe('test workflow platformDeploy', () => {
205
214
206
215
assertions . assertVerifyActorJobExecuted ( result ) ;
207
216
assertions . assertDeployChecklistJobExecuted ( result , true ) ;
217
+ assertions . assertHybridAppJobExecuted ( result , true ) ;
208
218
assertions . assertAndroidJobExecuted ( result , true , false , true ) ;
209
219
assertions . assertDesktopJobExecuted ( result , true , false ) ;
210
220
assertions . assertIOSJobExecuted ( result , true , false , true ) ;
@@ -278,6 +288,10 @@ describe('test workflow platformDeploy', () => {
278
288
steps : mocks . PLATFORM_DEPLOY__DEPLOY_CHECKLIST__STEP_MOCKS ,
279
289
runsOn : 'ubuntu-latest' ,
280
290
} ,
291
+ hybridApp : {
292
+ steps : mocks . PLATFORM_DEPLOY__HYBRID_APP__STEP_MOCKS ,
293
+ runsOn : 'ubuntu-latest' ,
294
+ } ,
281
295
} ;
282
296
const result = await act . runEvent ( 'push' , {
283
297
workflowFile : path . join ( repoPath , '.github' , 'workflows' , 'platformDeploy.yml' ) ,
@@ -289,6 +303,7 @@ describe('test workflow platformDeploy', () => {
289
303
290
304
assertions . assertVerifyActorJobExecuted ( result ) ;
291
305
assertions . assertDeployChecklistJobExecuted ( result , true ) ;
306
+ assertions . assertHybridAppJobExecuted ( result , false ) ;
292
307
assertions . assertAndroidJobExecuted ( result , false ) ;
293
308
assertions . assertDesktopJobExecuted ( result , false ) ;
294
309
assertions . assertIOSJobExecuted ( result , false ) ;
0 commit comments