* Steps to run during PR builds.
()
| 26 | * Steps to run during PR builds. |
| 27 | */ |
| 28 | function prBuildWorkflow() { |
| 29 | if (buildTargetsInclude(Targets.RUNTIME, Targets.INTEGRATION_TEST)) { |
| 30 | timedExecOrDie('amp build --fortesting'); |
| 31 | storeBuildOutputToWorkspace(); |
| 32 | } else { |
| 33 | skipDependentJobs( |
| 34 | jobName, |
| 35 | 'this PR does not affect the runtime or integration tests' |
| 36 | ); |
| 37 | } |
| 38 | } |
| 39 | |
| 40 | runCiJob(jobName, pushBuildWorkflow, prBuildWorkflow); |
nothing calls this directly
no test coverage detected