diff --git a/src/commands/sites/utils/prepareGitHubActionsIntegration.ts b/src/commands/sites/utils/prepareGitHubActionsIntegration.ts index e571b1c..7b31f95 100644 --- a/src/commands/sites/utils/prepareGitHubActionsIntegration.ts +++ b/src/commands/sites/utils/prepareGitHubActionsIntegration.ts @@ -12,8 +12,14 @@ import { requestDeploymentWorkflowInstallCommand } from './requestDeploymentWork import { saveDeploymentWorkflowYaml } from './saveDeploymentWorkflowYaml'; export const ghWorkflowFilename = 'fleek-deploy.yaml'; -export const ghActionsWorflowsDirectory = joinPath(process.cwd(), '.github/workflows'); -export const ghActionsDeploySitesYamlPath = joinPath(ghActionsWorflowsDirectory, ghWorkflowFilename); +export const ghActionsWorflowsDirectory = joinPath( + process.cwd(), + '.github/workflows', +); +export const ghActionsDeploySitesYamlPath = joinPath( + ghActionsWorflowsDirectory, + ghWorkflowFilename, +); type PrepareGitHubActionsIntegrationArgs = { personalAccessToken: string; diff --git a/src/guards/sdkGuard.ts b/src/guards/sdkGuard.ts index 60c5eb5..41e5d3e 100644 --- a/src/guards/sdkGuard.ts +++ b/src/guards/sdkGuard.ts @@ -3,8 +3,8 @@ import { getDefined } from '../defined'; import { output } from '../cli'; import { config } from '../config'; -import { loginGuard } from './loginGuard'; import { t } from '../utils/translation'; +import { loginGuard } from './loginGuard'; import type { Action, SdkGuardedFunction } from './types';