Skip to content

Commit ece0f08

Browse files
committed
Fix server build verification in CI
1 parent b5e5f65 commit ece0f08

4 files changed

Lines changed: 2 additions & 4 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"ci:test:workspace": "pnpm -r --filter './packages/**' --if-present run test",
1919
"ci:test": "pnpm ci:test:scripts && pnpm ci:test:workspace",
2020
"ci:typecheck": "pnpm --filter @spencer-kit/coder-studio exec tsc -p tsconfig.json --noEmit && pnpm --filter @coder-studio/utils exec tsc -p tsconfig.json --noEmit && pnpm --filter @coder-studio/core exec tsc -p tsconfig.json --noEmit && pnpm --filter @coder-studio/providers exec tsc -p tsconfig.json --noEmit && pnpm --filter @coder-studio/server exec tsc -p tsconfig.json --noEmit && pnpm --filter @coder-studio/web exec tsc -p tsconfig.json --noEmit",
21-
"ci:build": "pnpm build",
21+
"ci:build": "pnpm --filter @coder-studio/server build && pnpm build",
2222
"ci:verify": "pnpm changeset:validate && pnpm ci:lint && pnpm ci:test && pnpm ci:build",
2323
"ci:release:validate": "pnpm ci:verify && pnpm publish:cli -- --no-build",
2424
"acceptance:phase1": "pnpm --dir e2e exec playwright test --config playwright.config.ts --grep @phase1",

packages/server/src/git/image-revision.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { execFile } from "child_process";
22
import { promisify } from "util";
3-
import { resolveSafe } from "../fs/file-io.js";
43
import { getImageTypeInfo } from "../fs/image.js";
54
import { GitError } from "./cli.js";
65

packages/server/src/server.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ import {
2222
ensureStateDir,
2323
parseServerConfig,
2424
resolveConfiguredStateDir,
25-
type ServerConfig,
2625
type ServerConfigInput,
2726
} from "./config.js";
2827
import { AutoFetchScheduler } from "./git/auto-fetch.js";

packages/server/src/update/update-service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ export class UpdateService {
180180
};
181181
}
182182

183-
async checkForUpdates(options: { manual: boolean }): Promise<UpdateStateView> {
183+
async checkForUpdates(_options: { manual: boolean }): Promise<UpdateStateView> {
184184
const current = this.deps.updateStateRepo.get();
185185
if (current.updateStatus === "installing" || current.updateStatus === "restarting") {
186186
throw createBusyError("Update installation is already in progress");

0 commit comments

Comments
 (0)