ci(benchmark): Add scenarios testing insights (#14227)

This commit is contained in:
Danny Martini
2025-03-27 17:08:16 +01:00
committed by GitHub
parent 2da0c86e4d
commit 65747f1c60
11 changed files with 620 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
#!/usr/bin/env zx
import path from 'path';
import { fs } from 'zx';
/**
* Creates the needed directories so the permissions get set correctly.
*/
export function setup({ runDir }) {
const neededDirs = ['n8n', 'postgres'];
for (const dir of neededDirs) {
fs.ensureDirSync(path.join(runDir, dir));
}
}