(name: string)
| 9 | } |
| 10 | |
| 11 | export function assertEnv(name: string): string { |
| 12 | if (!process.env[name]) { |
| 13 | throw new Error(`Missing ENV variable process.env.${name}`); |
| 14 | } |
| 15 | return process.env[name] as unknown as string; |
| 16 | } |
| 17 | |
| 18 | export async function runUserScripts(dir: string): Promise<void> { |
| 19 | const buildScriptPath = path.join(dir, 'build.sh'); |
no outgoing calls
no test coverage detected