Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 19 additions & 6 deletions src/utils/run-build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import { NetlifyConfig, type GeneratedFunction } from '@netlify/build'

import BaseCommand from '../commands/base-command.js'
import { $TSFixMe } from '../commands/types.js'
import { getBootstrapURL } from '../lib/edge-functions/bootstrap.js'
import { INTERNAL_EDGE_FUNCTIONS_FOLDER } from '../lib/edge-functions/consts.js'
import { getPathInProject } from '../lib/settings.js'
Expand Down Expand Up @@ -47,10 +46,22 @@
await Promise.all(ops)
}

type BuildOptions = {
context: string
cwd?: string
debug: boolean
dir?: string
dry: boolean
offline: boolean
quiet: boolean
saveConfig: boolean
skipWaitPort?: boolean
}

type RunNetlifyBuildOptions = {
command: BaseCommand
// The flags of the command
options: $TSFixMe
options: BuildOptions
settings: ServerSettings
env: NodeJS.ProcessEnv
timeline: 'dev' | 'build'
Expand All @@ -71,7 +82,7 @@
}: {
command: BaseCommand
// The flags of the command
options: $TSFixMe
options: BuildOptions
settings: ServerSettings
env: NodeJS.ProcessEnv
timeline: 'build' | 'dev'
Expand All @@ -83,6 +94,7 @@
const sharedOptions = {
cachedConfig,
configPath: cachedConfig.configPath,
saveConfig: options.saveConfig,
siteId: cachedConfig.siteInfo.id,
token: cachedConfig.token,
apiHost: apiOpts.host,
Expand All @@ -97,7 +109,7 @@
packagePath: command.workspacePackage,
cwd: cachedConfig.buildDir,
quiet: options.quiet,
saveConfig: options.saveConfig,

Check failure on line 112 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Unit (ubuntu-latest, 22.x)

An object literal cannot have multiple properties with the same name.

Check failure on line 112 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Unit (ubuntu-latest, 20.12.2)

An object literal cannot have multiple properties with the same name.

Check failure on line 112 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / typecheck

An object literal cannot have multiple properties with the same name.

Check failure on line 112 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Unit (ubuntu-latest, 24)

An object literal cannot have multiple properties with the same name.

Check failure on line 112 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / E2E (macOS-latest, 22)

An object literal cannot have multiple properties with the same name.

Check failure on line 112 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / E2E (ubuntu-latest, 22)

An object literal cannot have multiple properties with the same name.

Check failure on line 112 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / E2E (macOS-latest, 20.12.2)

An object literal cannot have multiple properties with the same name.

Check failure on line 112 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (ubuntu-latest, 20.12.2, 1/4)

An object literal cannot have multiple properties with the same name.

Check failure on line 112 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / E2E (ubuntu-latest, 24)

An object literal cannot have multiple properties with the same name.

Check failure on line 112 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (ubuntu-latest, 20.12.2, 4/4)

An object literal cannot have multiple properties with the same name.

Check failure on line 112 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (ubuntu-latest, 24, 4/4)

An object literal cannot have multiple properties with the same name.

Check failure on line 112 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (ubuntu-latest, 22, 4/4)

An object literal cannot have multiple properties with the same name.

Check failure on line 112 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (ubuntu-latest, 24, 3/4)

An object literal cannot have multiple properties with the same name.

Check failure on line 112 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (ubuntu-latest, 24, 2/4)

An object literal cannot have multiple properties with the same name.

Check failure on line 112 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (ubuntu-latest, 24, 1/4)

An object literal cannot have multiple properties with the same name.

Check failure on line 112 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (ubuntu-latest, 22, 1/4)

An object literal cannot have multiple properties with the same name.

Check failure on line 112 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (ubuntu-latest, 22, 2/4)

An object literal cannot have multiple properties with the same name.

Check failure on line 112 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Unit (macOS-latest, 20.12.2)

An object literal cannot have multiple properties with the same name.

Check failure on line 112 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (ubuntu-latest, 22, 3/4)

An object literal cannot have multiple properties with the same name.

Check failure on line 112 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Unit (macOS-latest, 24)

An object literal cannot have multiple properties with the same name.

Check failure on line 112 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (macOS-latest, 24, 4/4)

An object literal cannot have multiple properties with the same name.

Check failure on line 112 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (macOS-latest, 20.12.2, 1/4)

An object literal cannot have multiple properties with the same name.

Check failure on line 112 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (macOS-latest, 22, 3/4)

An object literal cannot have multiple properties with the same name.

Check failure on line 112 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Unit (macOS-latest, 22.x)

An object literal cannot have multiple properties with the same name.

Check failure on line 112 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (macOS-latest, 24, 1/4)

An object literal cannot have multiple properties with the same name.

Check failure on line 112 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (macOS-latest, 24, 3/4)

An object literal cannot have multiple properties with the same name.

Check failure on line 112 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (macOS-latest, 20.12.2, 2/4)

An object literal cannot have multiple properties with the same name.

Check failure on line 112 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / E2E (ubuntu-latest, 20.12.2)

An object literal cannot have multiple properties with the same name.

Check failure on line 112 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (macOS-latest, 22, 4/4)

An object literal cannot have multiple properties with the same name.

Check failure on line 112 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (macOS-latest, 20.12.2, 3/4)

An object literal cannot have multiple properties with the same name.

Check failure on line 112 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (macOS-latest, 22, 1/4)

An object literal cannot have multiple properties with the same name.

Check failure on line 112 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (ubuntu-latest, 20.12.2, 2/4)

An object literal cannot have multiple properties with the same name.

Check failure on line 112 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (macOS-latest, 20.12.2, 4/4)

An object literal cannot have multiple properties with the same name.

Check failure on line 112 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / E2E (macOS-latest, 24)

An object literal cannot have multiple properties with the same name.

Check failure on line 112 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Unit (windows-2025, 20.12.2)

An object literal cannot have multiple properties with the same name.

Check failure on line 112 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (ubuntu-latest, 20.12.2, 3/4)

An object literal cannot have multiple properties with the same name.

Check failure on line 112 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / E2E Windows tests (windows-2025, 22)

An object literal cannot have multiple properties with the same name.

Check failure on line 112 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / E2E Windows tests (windows-2025, 20.12.2)

An object literal cannot have multiple properties with the same name.

Check failure on line 112 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Unit (windows-2025, 24)

An object literal cannot have multiple properties with the same name.

Check failure on line 112 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (windows-2025, 20.12.2, 4/4)

An object literal cannot have multiple properties with the same name.

Check failure on line 112 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (windows-2025, 22, 4/4)

An object literal cannot have multiple properties with the same name.

Check failure on line 112 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (windows-2025, 22, 3/4)

An object literal cannot have multiple properties with the same name.

Check failure on line 112 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (windows-2025, 24, 3/4)

An object literal cannot have multiple properties with the same name.

Check failure on line 112 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (macOS-latest, 22, 2/4)

An object literal cannot have multiple properties with the same name.

Check failure on line 112 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (windows-2025, 20.12.2, 1/4)

An object literal cannot have multiple properties with the same name.

Check failure on line 112 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (windows-2025, 24, 2/4)

An object literal cannot have multiple properties with the same name.

Check failure on line 112 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (windows-2025, 24, 4/4)

An object literal cannot have multiple properties with the same name.

Check failure on line 112 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (windows-2025, 20.12.2, 2/4)

An object literal cannot have multiple properties with the same name.

Check failure on line 112 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / E2E Windows tests (windows-2025, 24)

An object literal cannot have multiple properties with the same name.

Check failure on line 112 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (macOS-latest, 24, 2/4)

An object literal cannot have multiple properties with the same name.

Check failure on line 112 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (windows-2025, 22, 1/4)

An object literal cannot have multiple properties with the same name.

Check failure on line 112 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (windows-2025, 24, 1/4)

An object literal cannot have multiple properties with the same name.

Check failure on line 112 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (windows-2025, 22, 2/4)

An object literal cannot have multiple properties with the same name.

Check failure on line 112 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (windows-2025, 20.12.2, 3/4)

An object literal cannot have multiple properties with the same name.
edgeFunctionsBootstrapURL: await getBootstrapURL(),
}

Expand Down Expand Up @@ -139,13 +151,14 @@
const tempConfigPath = await copyConfig(cachedConfig.configPath ?? '', command.workingDir)
const buildSiteOptions = {
...sharedOptions,
outputConfigPath: tempConfigPath,
saveConfig: true,
cachedConfig: {
...sharedOptions.cachedConfig,
outputConfigPath: tempConfigPath,
},
}

// Run Netlify Build using the main entry point.
// @ts-expect-error TS(2345) FIXME: Argument of type '{ outputConfigPath: string; save... Remove this comment to see the full error message
const { netlifyConfig, success, generatedFunctions } = await buildSite(buildSiteOptions)

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Unit (ubuntu-latest, 22.x)

Argument of type '{ cachedConfig: { outputConfigPath: string; accounts: MinimalAccount[] | undefined; buildDir: string; env: EnvironmentVariables; ... 10 more ...; token?: unknown; }; ... 16 more ...; edgeFunctionsBootstrapURL: string; }' is not assignable to parameter of type 'Partial<BuildFlags>'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Unit (ubuntu-latest, 22.x)

Property 'generatedFunctions' does not exist on type '{ success: boolean; severityCode: number; logs: BufferedLogs | undefined; netlifyConfig?: any; configMutations?: any; }'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Unit (ubuntu-latest, 20.12.2)

Argument of type '{ cachedConfig: { outputConfigPath: string; accounts: MinimalAccount[] | undefined; buildDir: string; env: EnvironmentVariables; ... 10 more ...; token?: unknown; }; ... 16 more ...; edgeFunctionsBootstrapURL: string; }' is not assignable to parameter of type 'Partial<BuildFlags>'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Unit (ubuntu-latest, 20.12.2)

Property 'generatedFunctions' does not exist on type '{ success: boolean; severityCode: number; logs: BufferedLogs | undefined; netlifyConfig?: any; configMutations?: any; }'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / typecheck

Argument of type '{ cachedConfig: { outputConfigPath: string; accounts: MinimalAccount[] | undefined; buildDir: string; env: EnvironmentVariables; ... 10 more ...; token?: unknown; }; ... 16 more ...; edgeFunctionsBootstrapURL: string; }' is not assignable to parameter of type 'Partial<BuildFlags>'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / typecheck

Property 'generatedFunctions' does not exist on type '{ success: boolean; severityCode: number; logs: BufferedLogs | undefined; netlifyConfig?: any; configMutations?: any; }'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Unit (ubuntu-latest, 24)

Argument of type '{ cachedConfig: { outputConfigPath: string; accounts: MinimalAccount[] | undefined; buildDir: string; env: EnvironmentVariables; ... 10 more ...; token?: unknown; }; ... 16 more ...; edgeFunctionsBootstrapURL: string; }' is not assignable to parameter of type 'Partial<BuildFlags>'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Unit (ubuntu-latest, 24)

Property 'generatedFunctions' does not exist on type '{ success: boolean; severityCode: number; logs: BufferedLogs | undefined; netlifyConfig?: any; configMutations?: any; }'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / E2E (macOS-latest, 22)

Argument of type '{ cachedConfig: { outputConfigPath: string; accounts: MinimalAccount[] | undefined; buildDir: string; env: EnvironmentVariables; ... 10 more ...; token?: unknown; }; ... 16 more ...; edgeFunctionsBootstrapURL: string; }' is not assignable to parameter of type 'Partial<BuildFlags>'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / E2E (macOS-latest, 22)

Property 'generatedFunctions' does not exist on type '{ success: boolean; severityCode: number; logs: BufferedLogs | undefined; netlifyConfig?: any; configMutations?: any; }'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / E2E (ubuntu-latest, 22)

Argument of type '{ cachedConfig: { outputConfigPath: string; accounts: MinimalAccount[] | undefined; buildDir: string; env: EnvironmentVariables; ... 10 more ...; token?: unknown; }; ... 16 more ...; edgeFunctionsBootstrapURL: string; }' is not assignable to parameter of type 'Partial<BuildFlags>'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / E2E (ubuntu-latest, 22)

Property 'generatedFunctions' does not exist on type '{ success: boolean; severityCode: number; logs: BufferedLogs | undefined; netlifyConfig?: any; configMutations?: any; }'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / E2E (macOS-latest, 20.12.2)

Argument of type '{ cachedConfig: { outputConfigPath: string; accounts: MinimalAccount[] | undefined; buildDir: string; env: EnvironmentVariables; ... 10 more ...; token?: unknown; }; ... 16 more ...; edgeFunctionsBootstrapURL: string; }' is not assignable to parameter of type 'Partial<BuildFlags>'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / E2E (macOS-latest, 20.12.2)

Property 'generatedFunctions' does not exist on type '{ success: boolean; severityCode: number; logs: BufferedLogs | undefined; netlifyConfig?: any; configMutations?: any; }'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (ubuntu-latest, 20.12.2, 1/4)

Argument of type '{ cachedConfig: { outputConfigPath: string; accounts: MinimalAccount[] | undefined; buildDir: string; env: EnvironmentVariables; ... 10 more ...; token?: unknown; }; ... 16 more ...; edgeFunctionsBootstrapURL: string; }' is not assignable to parameter of type 'Partial<BuildFlags>'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (ubuntu-latest, 20.12.2, 1/4)

Property 'generatedFunctions' does not exist on type '{ success: boolean; severityCode: number; logs: BufferedLogs | undefined; netlifyConfig?: any; configMutations?: any; }'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / E2E (ubuntu-latest, 24)

Argument of type '{ cachedConfig: { outputConfigPath: string; accounts: MinimalAccount[] | undefined; buildDir: string; env: EnvironmentVariables; ... 10 more ...; token?: unknown; }; ... 16 more ...; edgeFunctionsBootstrapURL: string; }' is not assignable to parameter of type 'Partial<BuildFlags>'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / E2E (ubuntu-latest, 24)

Property 'generatedFunctions' does not exist on type '{ success: boolean; severityCode: number; logs: BufferedLogs | undefined; netlifyConfig?: any; configMutations?: any; }'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (ubuntu-latest, 20.12.2, 4/4)

Argument of type '{ cachedConfig: { outputConfigPath: string; accounts: MinimalAccount[] | undefined; buildDir: string; env: EnvironmentVariables; ... 10 more ...; token?: unknown; }; ... 16 more ...; edgeFunctionsBootstrapURL: string; }' is not assignable to parameter of type 'Partial<BuildFlags>'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (ubuntu-latest, 20.12.2, 4/4)

Property 'generatedFunctions' does not exist on type '{ success: boolean; severityCode: number; logs: BufferedLogs | undefined; netlifyConfig?: any; configMutations?: any; }'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (ubuntu-latest, 24, 4/4)

Argument of type '{ cachedConfig: { outputConfigPath: string; accounts: MinimalAccount[] | undefined; buildDir: string; env: EnvironmentVariables; ... 10 more ...; token?: unknown; }; ... 16 more ...; edgeFunctionsBootstrapURL: string; }' is not assignable to parameter of type 'Partial<BuildFlags>'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (ubuntu-latest, 24, 4/4)

Property 'generatedFunctions' does not exist on type '{ success: boolean; severityCode: number; logs: BufferedLogs | undefined; netlifyConfig?: any; configMutations?: any; }'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (ubuntu-latest, 22, 4/4)

Argument of type '{ cachedConfig: { outputConfigPath: string; accounts: MinimalAccount[] | undefined; buildDir: string; env: EnvironmentVariables; ... 10 more ...; token?: unknown; }; ... 16 more ...; edgeFunctionsBootstrapURL: string; }' is not assignable to parameter of type 'Partial<BuildFlags>'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (ubuntu-latest, 22, 4/4)

Property 'generatedFunctions' does not exist on type '{ success: boolean; severityCode: number; logs: BufferedLogs | undefined; netlifyConfig?: any; configMutations?: any; }'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (ubuntu-latest, 24, 3/4)

Argument of type '{ cachedConfig: { outputConfigPath: string; accounts: MinimalAccount[] | undefined; buildDir: string; env: EnvironmentVariables; ... 10 more ...; token?: unknown; }; ... 16 more ...; edgeFunctionsBootstrapURL: string; }' is not assignable to parameter of type 'Partial<BuildFlags>'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (ubuntu-latest, 24, 3/4)

Property 'generatedFunctions' does not exist on type '{ success: boolean; severityCode: number; logs: BufferedLogs | undefined; netlifyConfig?: any; configMutations?: any; }'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (ubuntu-latest, 24, 2/4)

Argument of type '{ cachedConfig: { outputConfigPath: string; accounts: MinimalAccount[] | undefined; buildDir: string; env: EnvironmentVariables; ... 10 more ...; token?: unknown; }; ... 16 more ...; edgeFunctionsBootstrapURL: string; }' is not assignable to parameter of type 'Partial<BuildFlags>'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (ubuntu-latest, 24, 2/4)

Property 'generatedFunctions' does not exist on type '{ success: boolean; severityCode: number; logs: BufferedLogs | undefined; netlifyConfig?: any; configMutations?: any; }'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (ubuntu-latest, 24, 1/4)

Argument of type '{ cachedConfig: { outputConfigPath: string; accounts: MinimalAccount[] | undefined; buildDir: string; env: EnvironmentVariables; ... 10 more ...; token?: unknown; }; ... 16 more ...; edgeFunctionsBootstrapURL: string; }' is not assignable to parameter of type 'Partial<BuildFlags>'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (ubuntu-latest, 24, 1/4)

Property 'generatedFunctions' does not exist on type '{ success: boolean; severityCode: number; logs: BufferedLogs | undefined; netlifyConfig?: any; configMutations?: any; }'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (ubuntu-latest, 22, 1/4)

Argument of type '{ cachedConfig: { outputConfigPath: string; accounts: MinimalAccount[] | undefined; buildDir: string; env: EnvironmentVariables; ... 10 more ...; token?: unknown; }; ... 16 more ...; edgeFunctionsBootstrapURL: string; }' is not assignable to parameter of type 'Partial<BuildFlags>'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (ubuntu-latest, 22, 1/4)

Property 'generatedFunctions' does not exist on type '{ success: boolean; severityCode: number; logs: BufferedLogs | undefined; netlifyConfig?: any; configMutations?: any; }'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (ubuntu-latest, 22, 2/4)

Argument of type '{ cachedConfig: { outputConfigPath: string; accounts: MinimalAccount[] | undefined; buildDir: string; env: EnvironmentVariables; ... 10 more ...; token?: unknown; }; ... 16 more ...; edgeFunctionsBootstrapURL: string; }' is not assignable to parameter of type 'Partial<BuildFlags>'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (ubuntu-latest, 22, 2/4)

Property 'generatedFunctions' does not exist on type '{ success: boolean; severityCode: number; logs: BufferedLogs | undefined; netlifyConfig?: any; configMutations?: any; }'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Unit (macOS-latest, 20.12.2)

Argument of type '{ cachedConfig: { outputConfigPath: string; accounts: MinimalAccount[] | undefined; buildDir: string; env: EnvironmentVariables; ... 10 more ...; token?: unknown; }; ... 16 more ...; edgeFunctionsBootstrapURL: string; }' is not assignable to parameter of type 'Partial<BuildFlags>'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Unit (macOS-latest, 20.12.2)

Property 'generatedFunctions' does not exist on type '{ success: boolean; severityCode: number; logs: BufferedLogs | undefined; netlifyConfig?: any; configMutations?: any; }'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (ubuntu-latest, 22, 3/4)

Argument of type '{ cachedConfig: { outputConfigPath: string; accounts: MinimalAccount[] | undefined; buildDir: string; env: EnvironmentVariables; ... 10 more ...; token?: unknown; }; ... 16 more ...; edgeFunctionsBootstrapURL: string; }' is not assignable to parameter of type 'Partial<BuildFlags>'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (ubuntu-latest, 22, 3/4)

Property 'generatedFunctions' does not exist on type '{ success: boolean; severityCode: number; logs: BufferedLogs | undefined; netlifyConfig?: any; configMutations?: any; }'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Unit (macOS-latest, 24)

Argument of type '{ cachedConfig: { outputConfigPath: string; accounts: MinimalAccount[] | undefined; buildDir: string; env: EnvironmentVariables; ... 10 more ...; token?: unknown; }; ... 16 more ...; edgeFunctionsBootstrapURL: string; }' is not assignable to parameter of type 'Partial<BuildFlags>'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Unit (macOS-latest, 24)

Property 'generatedFunctions' does not exist on type '{ success: boolean; severityCode: number; logs: BufferedLogs | undefined; netlifyConfig?: any; configMutations?: any; }'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (macOS-latest, 24, 4/4)

Argument of type '{ cachedConfig: { outputConfigPath: string; accounts: MinimalAccount[] | undefined; buildDir: string; env: EnvironmentVariables; ... 10 more ...; token?: unknown; }; ... 16 more ...; edgeFunctionsBootstrapURL: string; }' is not assignable to parameter of type 'Partial<BuildFlags>'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (macOS-latest, 24, 4/4)

Property 'generatedFunctions' does not exist on type '{ success: boolean; severityCode: number; logs: BufferedLogs | undefined; netlifyConfig?: any; configMutations?: any; }'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (macOS-latest, 20.12.2, 1/4)

Argument of type '{ cachedConfig: { outputConfigPath: string; accounts: MinimalAccount[] | undefined; buildDir: string; env: EnvironmentVariables; ... 10 more ...; token?: unknown; }; ... 16 more ...; edgeFunctionsBootstrapURL: string; }' is not assignable to parameter of type 'Partial<BuildFlags>'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (macOS-latest, 20.12.2, 1/4)

Property 'generatedFunctions' does not exist on type '{ success: boolean; severityCode: number; logs: BufferedLogs | undefined; netlifyConfig?: any; configMutations?: any; }'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (macOS-latest, 22, 3/4)

Argument of type '{ cachedConfig: { outputConfigPath: string; accounts: MinimalAccount[] | undefined; buildDir: string; env: EnvironmentVariables; ... 10 more ...; token?: unknown; }; ... 16 more ...; edgeFunctionsBootstrapURL: string; }' is not assignable to parameter of type 'Partial<BuildFlags>'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (macOS-latest, 22, 3/4)

Property 'generatedFunctions' does not exist on type '{ success: boolean; severityCode: number; logs: BufferedLogs | undefined; netlifyConfig?: any; configMutations?: any; }'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Unit (macOS-latest, 22.x)

Argument of type '{ cachedConfig: { outputConfigPath: string; accounts: MinimalAccount[] | undefined; buildDir: string; env: EnvironmentVariables; ... 10 more ...; token?: unknown; }; ... 16 more ...; edgeFunctionsBootstrapURL: string; }' is not assignable to parameter of type 'Partial<BuildFlags>'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Unit (macOS-latest, 22.x)

Property 'generatedFunctions' does not exist on type '{ success: boolean; severityCode: number; logs: BufferedLogs | undefined; netlifyConfig?: any; configMutations?: any; }'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (macOS-latest, 24, 1/4)

Argument of type '{ cachedConfig: { outputConfigPath: string; accounts: MinimalAccount[] | undefined; buildDir: string; env: EnvironmentVariables; ... 10 more ...; token?: unknown; }; ... 16 more ...; edgeFunctionsBootstrapURL: string; }' is not assignable to parameter of type 'Partial<BuildFlags>'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (macOS-latest, 24, 1/4)

Property 'generatedFunctions' does not exist on type '{ success: boolean; severityCode: number; logs: BufferedLogs | undefined; netlifyConfig?: any; configMutations?: any; }'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (macOS-latest, 24, 3/4)

Argument of type '{ cachedConfig: { outputConfigPath: string; accounts: MinimalAccount[] | undefined; buildDir: string; env: EnvironmentVariables; ... 10 more ...; token?: unknown; }; ... 16 more ...; edgeFunctionsBootstrapURL: string; }' is not assignable to parameter of type 'Partial<BuildFlags>'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (macOS-latest, 24, 3/4)

Property 'generatedFunctions' does not exist on type '{ success: boolean; severityCode: number; logs: BufferedLogs | undefined; netlifyConfig?: any; configMutations?: any; }'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (macOS-latest, 20.12.2, 2/4)

Argument of type '{ cachedConfig: { outputConfigPath: string; accounts: MinimalAccount[] | undefined; buildDir: string; env: EnvironmentVariables; ... 10 more ...; token?: unknown; }; ... 16 more ...; edgeFunctionsBootstrapURL: string; }' is not assignable to parameter of type 'Partial<BuildFlags>'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (macOS-latest, 20.12.2, 2/4)

Property 'generatedFunctions' does not exist on type '{ success: boolean; severityCode: number; logs: BufferedLogs | undefined; netlifyConfig?: any; configMutations?: any; }'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / E2E (ubuntu-latest, 20.12.2)

Argument of type '{ cachedConfig: { outputConfigPath: string; accounts: MinimalAccount[] | undefined; buildDir: string; env: EnvironmentVariables; ... 10 more ...; token?: unknown; }; ... 16 more ...; edgeFunctionsBootstrapURL: string; }' is not assignable to parameter of type 'Partial<BuildFlags>'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / E2E (ubuntu-latest, 20.12.2)

Property 'generatedFunctions' does not exist on type '{ success: boolean; severityCode: number; logs: BufferedLogs | undefined; netlifyConfig?: any; configMutations?: any; }'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (macOS-latest, 22, 4/4)

Argument of type '{ cachedConfig: { outputConfigPath: string; accounts: MinimalAccount[] | undefined; buildDir: string; env: EnvironmentVariables; ... 10 more ...; token?: unknown; }; ... 16 more ...; edgeFunctionsBootstrapURL: string; }' is not assignable to parameter of type 'Partial<BuildFlags>'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (macOS-latest, 22, 4/4)

Property 'generatedFunctions' does not exist on type '{ success: boolean; severityCode: number; logs: BufferedLogs | undefined; netlifyConfig?: any; configMutations?: any; }'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (macOS-latest, 20.12.2, 3/4)

Argument of type '{ cachedConfig: { outputConfigPath: string; accounts: MinimalAccount[] | undefined; buildDir: string; env: EnvironmentVariables; ... 10 more ...; token?: unknown; }; ... 16 more ...; edgeFunctionsBootstrapURL: string; }' is not assignable to parameter of type 'Partial<BuildFlags>'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (macOS-latest, 20.12.2, 3/4)

Property 'generatedFunctions' does not exist on type '{ success: boolean; severityCode: number; logs: BufferedLogs | undefined; netlifyConfig?: any; configMutations?: any; }'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (macOS-latest, 22, 1/4)

Argument of type '{ cachedConfig: { outputConfigPath: string; accounts: MinimalAccount[] | undefined; buildDir: string; env: EnvironmentVariables; ... 10 more ...; token?: unknown; }; ... 16 more ...; edgeFunctionsBootstrapURL: string; }' is not assignable to parameter of type 'Partial<BuildFlags>'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (macOS-latest, 22, 1/4)

Property 'generatedFunctions' does not exist on type '{ success: boolean; severityCode: number; logs: BufferedLogs | undefined; netlifyConfig?: any; configMutations?: any; }'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (ubuntu-latest, 20.12.2, 2/4)

Argument of type '{ cachedConfig: { outputConfigPath: string; accounts: MinimalAccount[] | undefined; buildDir: string; env: EnvironmentVariables; ... 10 more ...; token?: unknown; }; ... 16 more ...; edgeFunctionsBootstrapURL: string; }' is not assignable to parameter of type 'Partial<BuildFlags>'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (ubuntu-latest, 20.12.2, 2/4)

Property 'generatedFunctions' does not exist on type '{ success: boolean; severityCode: number; logs: BufferedLogs | undefined; netlifyConfig?: any; configMutations?: any; }'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (macOS-latest, 20.12.2, 4/4)

Argument of type '{ cachedConfig: { outputConfigPath: string; accounts: MinimalAccount[] | undefined; buildDir: string; env: EnvironmentVariables; ... 10 more ...; token?: unknown; }; ... 16 more ...; edgeFunctionsBootstrapURL: string; }' is not assignable to parameter of type 'Partial<BuildFlags>'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (macOS-latest, 20.12.2, 4/4)

Property 'generatedFunctions' does not exist on type '{ success: boolean; severityCode: number; logs: BufferedLogs | undefined; netlifyConfig?: any; configMutations?: any; }'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / E2E (macOS-latest, 24)

Argument of type '{ cachedConfig: { outputConfigPath: string; accounts: MinimalAccount[] | undefined; buildDir: string; env: EnvironmentVariables; ... 10 more ...; token?: unknown; }; ... 16 more ...; edgeFunctionsBootstrapURL: string; }' is not assignable to parameter of type 'Partial<BuildFlags>'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / E2E (macOS-latest, 24)

Property 'generatedFunctions' does not exist on type '{ success: boolean; severityCode: number; logs: BufferedLogs | undefined; netlifyConfig?: any; configMutations?: any; }'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Unit (windows-2025, 20.12.2)

Argument of type '{ cachedConfig: { outputConfigPath: string; accounts: MinimalAccount[] | undefined; buildDir: string; env: EnvironmentVariables; ... 10 more ...; token?: unknown; }; ... 16 more ...; edgeFunctionsBootstrapURL: string; }' is not assignable to parameter of type 'Partial<BuildFlags>'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Unit (windows-2025, 20.12.2)

Property 'generatedFunctions' does not exist on type '{ success: boolean; severityCode: number; logs: BufferedLogs | undefined; netlifyConfig?: any; configMutations?: any; }'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (ubuntu-latest, 20.12.2, 3/4)

Argument of type '{ cachedConfig: { outputConfigPath: string; accounts: MinimalAccount[] | undefined; buildDir: string; env: EnvironmentVariables; ... 10 more ...; token?: unknown; }; ... 16 more ...; edgeFunctionsBootstrapURL: string; }' is not assignable to parameter of type 'Partial<BuildFlags>'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (ubuntu-latest, 20.12.2, 3/4)

Property 'generatedFunctions' does not exist on type '{ success: boolean; severityCode: number; logs: BufferedLogs | undefined; netlifyConfig?: any; configMutations?: any; }'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / E2E Windows tests (windows-2025, 22)

Argument of type '{ cachedConfig: { outputConfigPath: string; accounts: MinimalAccount[] | undefined; buildDir: string; env: EnvironmentVariables; ... 10 more ...; token?: unknown; }; ... 16 more ...; edgeFunctionsBootstrapURL: string; }' is not assignable to parameter of type 'Partial<BuildFlags>'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / E2E Windows tests (windows-2025, 22)

Property 'generatedFunctions' does not exist on type '{ success: boolean; severityCode: number; logs: BufferedLogs | undefined; netlifyConfig?: any; configMutations?: any; }'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / E2E Windows tests (windows-2025, 20.12.2)

Argument of type '{ cachedConfig: { outputConfigPath: string; accounts: MinimalAccount[] | undefined; buildDir: string; env: EnvironmentVariables; ... 10 more ...; token?: unknown; }; ... 16 more ...; edgeFunctionsBootstrapURL: string; }' is not assignable to parameter of type 'Partial<BuildFlags>'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / E2E Windows tests (windows-2025, 20.12.2)

Property 'generatedFunctions' does not exist on type '{ success: boolean; severityCode: number; logs: BufferedLogs | undefined; netlifyConfig?: any; configMutations?: any; }'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Unit (windows-2025, 24)

Argument of type '{ cachedConfig: { outputConfigPath: string; accounts: MinimalAccount[] | undefined; buildDir: string; env: EnvironmentVariables; ... 10 more ...; token?: unknown; }; ... 16 more ...; edgeFunctionsBootstrapURL: string; }' is not assignable to parameter of type 'Partial<BuildFlags>'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Unit (windows-2025, 24)

Property 'generatedFunctions' does not exist on type '{ success: boolean; severityCode: number; logs: BufferedLogs | undefined; netlifyConfig?: any; configMutations?: any; }'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (windows-2025, 20.12.2, 4/4)

Argument of type '{ cachedConfig: { outputConfigPath: string; accounts: MinimalAccount[] | undefined; buildDir: string; env: EnvironmentVariables; ... 10 more ...; token?: unknown; }; ... 16 more ...; edgeFunctionsBootstrapURL: string; }' is not assignable to parameter of type 'Partial<BuildFlags>'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (windows-2025, 20.12.2, 4/4)

Property 'generatedFunctions' does not exist on type '{ success: boolean; severityCode: number; logs: BufferedLogs | undefined; netlifyConfig?: any; configMutations?: any; }'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (windows-2025, 22, 4/4)

Argument of type '{ cachedConfig: { outputConfigPath: string; accounts: MinimalAccount[] | undefined; buildDir: string; env: EnvironmentVariables; ... 10 more ...; token?: unknown; }; ... 16 more ...; edgeFunctionsBootstrapURL: string; }' is not assignable to parameter of type 'Partial<BuildFlags>'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (windows-2025, 22, 4/4)

Property 'generatedFunctions' does not exist on type '{ success: boolean; severityCode: number; logs: BufferedLogs | undefined; netlifyConfig?: any; configMutations?: any; }'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (windows-2025, 22, 3/4)

Argument of type '{ cachedConfig: { outputConfigPath: string; accounts: MinimalAccount[] | undefined; buildDir: string; env: EnvironmentVariables; ... 10 more ...; token?: unknown; }; ... 16 more ...; edgeFunctionsBootstrapURL: string; }' is not assignable to parameter of type 'Partial<BuildFlags>'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (windows-2025, 22, 3/4)

Property 'generatedFunctions' does not exist on type '{ success: boolean; severityCode: number; logs: BufferedLogs | undefined; netlifyConfig?: any; configMutations?: any; }'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (windows-2025, 24, 3/4)

Argument of type '{ cachedConfig: { outputConfigPath: string; accounts: MinimalAccount[] | undefined; buildDir: string; env: EnvironmentVariables; ... 10 more ...; token?: unknown; }; ... 16 more ...; edgeFunctionsBootstrapURL: string; }' is not assignable to parameter of type 'Partial<BuildFlags>'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (windows-2025, 24, 3/4)

Property 'generatedFunctions' does not exist on type '{ success: boolean; severityCode: number; logs: BufferedLogs | undefined; netlifyConfig?: any; configMutations?: any; }'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (macOS-latest, 22, 2/4)

Argument of type '{ cachedConfig: { outputConfigPath: string; accounts: MinimalAccount[] | undefined; buildDir: string; env: EnvironmentVariables; ... 10 more ...; token?: unknown; }; ... 16 more ...; edgeFunctionsBootstrapURL: string; }' is not assignable to parameter of type 'Partial<BuildFlags>'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (macOS-latest, 22, 2/4)

Property 'generatedFunctions' does not exist on type '{ success: boolean; severityCode: number; logs: BufferedLogs | undefined; netlifyConfig?: any; configMutations?: any; }'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (windows-2025, 20.12.2, 1/4)

Argument of type '{ cachedConfig: { outputConfigPath: string; accounts: MinimalAccount[] | undefined; buildDir: string; env: EnvironmentVariables; ... 10 more ...; token?: unknown; }; ... 16 more ...; edgeFunctionsBootstrapURL: string; }' is not assignable to parameter of type 'Partial<BuildFlags>'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (windows-2025, 20.12.2, 1/4)

Property 'generatedFunctions' does not exist on type '{ success: boolean; severityCode: number; logs: BufferedLogs | undefined; netlifyConfig?: any; configMutations?: any; }'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (windows-2025, 24, 2/4)

Argument of type '{ cachedConfig: { outputConfigPath: string; accounts: MinimalAccount[] | undefined; buildDir: string; env: EnvironmentVariables; ... 10 more ...; token?: unknown; }; ... 16 more ...; edgeFunctionsBootstrapURL: string; }' is not assignable to parameter of type 'Partial<BuildFlags>'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (windows-2025, 24, 2/4)

Property 'generatedFunctions' does not exist on type '{ success: boolean; severityCode: number; logs: BufferedLogs | undefined; netlifyConfig?: any; configMutations?: any; }'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (windows-2025, 24, 4/4)

Argument of type '{ cachedConfig: { outputConfigPath: string; accounts: MinimalAccount[] | undefined; buildDir: string; env: EnvironmentVariables; ... 10 more ...; token?: unknown; }; ... 16 more ...; edgeFunctionsBootstrapURL: string; }' is not assignable to parameter of type 'Partial<BuildFlags>'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (windows-2025, 24, 4/4)

Property 'generatedFunctions' does not exist on type '{ success: boolean; severityCode: number; logs: BufferedLogs | undefined; netlifyConfig?: any; configMutations?: any; }'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (windows-2025, 20.12.2, 2/4)

Argument of type '{ cachedConfig: { outputConfigPath: string; accounts: MinimalAccount[] | undefined; buildDir: string; env: EnvironmentVariables; ... 10 more ...; token?: unknown; }; ... 16 more ...; edgeFunctionsBootstrapURL: string; }' is not assignable to parameter of type 'Partial<BuildFlags>'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (windows-2025, 20.12.2, 2/4)

Property 'generatedFunctions' does not exist on type '{ success: boolean; severityCode: number; logs: BufferedLogs | undefined; netlifyConfig?: any; configMutations?: any; }'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / E2E Windows tests (windows-2025, 24)

Argument of type '{ cachedConfig: { outputConfigPath: string; accounts: MinimalAccount[] | undefined; buildDir: string; env: EnvironmentVariables; ... 10 more ...; token?: unknown; }; ... 16 more ...; edgeFunctionsBootstrapURL: string; }' is not assignable to parameter of type 'Partial<BuildFlags>'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / E2E Windows tests (windows-2025, 24)

Property 'generatedFunctions' does not exist on type '{ success: boolean; severityCode: number; logs: BufferedLogs | undefined; netlifyConfig?: any; configMutations?: any; }'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (macOS-latest, 24, 2/4)

Argument of type '{ cachedConfig: { outputConfigPath: string; accounts: MinimalAccount[] | undefined; buildDir: string; env: EnvironmentVariables; ... 10 more ...; token?: unknown; }; ... 16 more ...; edgeFunctionsBootstrapURL: string; }' is not assignable to parameter of type 'Partial<BuildFlags>'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (macOS-latest, 24, 2/4)

Property 'generatedFunctions' does not exist on type '{ success: boolean; severityCode: number; logs: BufferedLogs | undefined; netlifyConfig?: any; configMutations?: any; }'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (windows-2025, 22, 1/4)

Argument of type '{ cachedConfig: { outputConfigPath: string; accounts: MinimalAccount[] | undefined; buildDir: string; env: EnvironmentVariables; ... 10 more ...; token?: unknown; }; ... 16 more ...; edgeFunctionsBootstrapURL: string; }' is not assignable to parameter of type 'Partial<BuildFlags>'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (windows-2025, 22, 1/4)

Property 'generatedFunctions' does not exist on type '{ success: boolean; severityCode: number; logs: BufferedLogs | undefined; netlifyConfig?: any; configMutations?: any; }'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (windows-2025, 24, 1/4)

Argument of type '{ cachedConfig: { outputConfigPath: string; accounts: MinimalAccount[] | undefined; buildDir: string; env: EnvironmentVariables; ... 10 more ...; token?: unknown; }; ... 16 more ...; edgeFunctionsBootstrapURL: string; }' is not assignable to parameter of type 'Partial<BuildFlags>'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (windows-2025, 24, 1/4)

Property 'generatedFunctions' does not exist on type '{ success: boolean; severityCode: number; logs: BufferedLogs | undefined; netlifyConfig?: any; configMutations?: any; }'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (windows-2025, 22, 2/4)

Argument of type '{ cachedConfig: { outputConfigPath: string; accounts: MinimalAccount[] | undefined; buildDir: string; env: EnvironmentVariables; ... 10 more ...; token?: unknown; }; ... 16 more ...; edgeFunctionsBootstrapURL: string; }' is not assignable to parameter of type 'Partial<BuildFlags>'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (windows-2025, 22, 2/4)

Property 'generatedFunctions' does not exist on type '{ success: boolean; severityCode: number; logs: BufferedLogs | undefined; netlifyConfig?: any; configMutations?: any; }'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (windows-2025, 20.12.2, 3/4)

Argument of type '{ cachedConfig: { outputConfigPath: string; accounts: MinimalAccount[] | undefined; buildDir: string; env: EnvironmentVariables; ... 10 more ...; token?: unknown; }; ... 16 more ...; edgeFunctionsBootstrapURL: string; }' is not assignable to parameter of type 'Partial<BuildFlags>'.

Check failure on line 161 in src/utils/run-build.ts

View workflow job for this annotation

GitHub Actions / Integration (windows-2025, 20.12.2, 3/4)

Property 'generatedFunctions' does not exist on type '{ success: boolean; severityCode: number; logs: BufferedLogs | undefined; netlifyConfig?: any; configMutations?: any; }'.

if (!success) {
return logAndThrowError('Could not start local server due to a build error')
Expand Down
Loading