UNPKG

@catladder/cli

Version:

Panter cli tool for cloud CI/CD and DevOps

12 lines (11 loc) 407 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.createCustomJobs = void 0; const buildJob_1 = require("./buildJob"); const testJob_1 = require("./testJob"); const createCustomJobs = async context => { return [...(0, testJob_1.createCustomTestJobs)(context), ...(await (0, buildJob_1.createCustomBuildJobs)(context))]; }; exports.createCustomJobs = createCustomJobs;