All files / backend/src/sync/ci-configurators index.ts

0% Statements 0/5
0% Branches 0/5
0% Functions 0/1
0% Lines 0/5

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57                                                                                                                 
/**
 * CI Configurators Module
 *
 * Provider-specific CI/CD workflow generators for Hugo sites.
 * Each configurator knows how to generate workflow files for its platform.
 */
 
import type { GitProvider } from '@quiqr/types';
import { GithubCIConfigurator } from './github-ci.js';
import { GitlabCIConfigurator } from './gitlab-ci.js';
import { ForgejoCIConfigurator } from './forgejo-ci.js';
 
/**
 * Options for CI workflow generation
 */
export interface CIWorkflowOptions {
  branch: string;
  hugoVersion?: string;
  overrideBaseURL?: string;
}
 
/**
 * CI Configurator interface
 */
export interface CIConfigurator {
  /**
   * Write CI workflow files to the destination directory
   */
  writeWorkflow(destinationPath: string, options: CIWorkflowOptions): Promise<void>;
 
  /**
   * Get the name of this CI provider
   */
  getName(): string;
}
 
/**
 * Get the appropriate CI configurator for a git provider
 */
export function getCIConfigurator(provider: GitProvider): CIConfigurator | null {
  switch (provider) {
    case 'github':
      return new GithubCIConfigurator();
    case 'gitlab':
      return new GitlabCIConfigurator();
    case 'forgejo':
      return new ForgejoCIConfigurator();
    case 'generic':
    default:
      return null;
  }
}
 
export { GithubCIConfigurator } from './github-ci.js';
export { GitlabCIConfigurator } from './gitlab-ci.js';
export { ForgejoCIConfigurator } from './forgejo-ci.js';