Welcome to mirror list, hosted at ThFree Co, Russian Federation.

getters.js « pipelines « modules « stores « ide « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d6c91f5b64d63d17480ebe95fb7116008c347d90 (plain)
1
2
3
4
5
6
7
export const hasLatestPipeline = state => !state.isLoadingPipeline && !!state.latestPipeline;

export const failedJobs = state =>
  state.stages.reduce(
    (acc, stage) => acc.concat(stage.jobs.filter(job => job.status === 'failed')),
    [],
  );