* Steps to run during PR builds.
()
| 50 | * Steps to run during PR builds. |
| 51 | */ |
| 52 | function prBuildWorkflow() { |
| 53 | if (buildTargetsInclude(Targets.RUNTIME, Targets.E2E_TEST)) { |
| 54 | pushBuildWorkflow(); |
| 55 | } else { |
| 56 | skipDependentJobs( |
| 57 | jobName, |
| 58 | 'this PR does not affect the runtime or end-to-end tests' |
| 59 | ); |
| 60 | } |
| 61 | } |
| 62 | |
| 63 | runCiJob(jobName, pushBuildWorkflow, prBuildWorkflow); |
nothing calls this directly
no test coverage detected