test: CI grouping?
This commit is contained in:
parent
cf0b780182
commit
e9a300fd46
|
@ -1,4 +1,4 @@
|
||||||
const {join} = require('path');
|
const {join, relative} = require('path');
|
||||||
|
|
||||||
const {processCode, spawnWith} = require('@flecks/core/src/server');
|
const {processCode, spawnWith} = require('@flecks/core/src/server');
|
||||||
const {glob} = require('glob');
|
const {glob} = require('glob');
|
||||||
|
@ -15,6 +15,11 @@ const {workspaces} = require(join(FLECKS_CORE_ROOT, 'package.json'));
|
||||||
(async () => {
|
(async () => {
|
||||||
process.exitCode = await concurrent(
|
process.exitCode = await concurrent(
|
||||||
(await Promise.all(workspaces.map((path) => glob(join(FLECKS_CORE_ROOT, path))))).flat(),
|
(await Promise.all(workspaces.map((path) => glob(join(FLECKS_CORE_ROOT, path))))).flat(),
|
||||||
(cwd) => processCode(spawnWith(args, {cwd})),
|
async (cwd) => {
|
||||||
|
console.log(`::group::{${relative(FLECKS_CORE_ROOT, cwd)}}`);
|
||||||
|
const code = await processCode(spawnWith(args, {cwd}));
|
||||||
|
console.log(`::endgroup::{${relative(FLECKS_CORE_ROOT, cwd)}}`);
|
||||||
|
return code;
|
||||||
|
},
|
||||||
);
|
);
|
||||||
})();
|
})();
|
||||||
|
|
Loading…
Reference in New Issue
Block a user