Skip to content

Commit e680ac9

Browse files
committed
Fix the type
1 parent 00a5ff4 commit e680ac9

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

src/compare/index.ts

+12-12
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ import {validateBenchmark} from "../history/schema.js";
55
import {Benchmark, StorageOptions} from "../types.js";
66
import {GithubActionsEventData, getDefaultBranch, getGithubEventData, parseBranchFromRef} from "../utils/index.js";
77

8-
const compareWithTypeEnum = {
8+
const CompareWithTypeEnum = {
99
latestCommitInBranch: "latestCommitInBranch",
1010
exactCommit: "exactCommit",
1111
} as const;
1212

1313
export type CompareWith =
14-
| {type: typeof compareWithTypeEnum.latestCommitInBranch; branch: string; before?: string}
15-
| {type: typeof compareWithTypeEnum.exactCommit; commitSha: string};
14+
| {type: typeof CompareWithTypeEnum.latestCommitInBranch; branch: string; before?: string}
15+
| {type: typeof CompareWithTypeEnum.exactCommit; commitSha: string};
1616

1717
export async function resolveCompare(provider: IHistoryProvider, opts: StorageOptions): Promise<Benchmark | null> {
1818
const compareWith = await resolveCompareWith(opts);
@@ -29,10 +29,10 @@ export async function resolvePrevBenchmark(
2929
provider: IHistoryProvider
3030
): Promise<Benchmark | null> {
3131
switch (compareWith.type) {
32-
case compareWithTypeEnum.exactCommit:
32+
case CompareWithTypeEnum.exactCommit:
3333
return await provider.readHistoryCommit(compareWith.commitSha);
3434

35-
case compareWithTypeEnum.latestCommitInBranch: {
35+
case CompareWithTypeEnum.latestCommitInBranch: {
3636
// Try first latest commit in branch
3737
return await provider.readLatestInBranch(compareWith.branch);
3838
}
@@ -41,10 +41,10 @@ export async function resolvePrevBenchmark(
4141

4242
export function renderCompareWith(compareWith: CompareWith): string {
4343
switch (compareWith.type) {
44-
case compareWithTypeEnum.exactCommit:
44+
case CompareWithTypeEnum.exactCommit:
4545
return `exactCommit ${compareWith.commitSha}`;
4646

47-
case compareWithTypeEnum.latestCommitInBranch: {
47+
case CompareWithTypeEnum.latestCommitInBranch: {
4848
if (compareWith.before) {
4949
return `latestCommitInBranch '${compareWith.branch}' before commit ${compareWith.before}`;
5050
}
@@ -57,11 +57,11 @@ export function renderCompareWith(compareWith: CompareWith): string {
5757
export async function resolveCompareWith(opts: StorageOptions): Promise<CompareWith> {
5858
// compare may be a branch or commit
5959
if (opts.compareBranch) {
60-
return {type: compareWithTypeEnum.latestCommitInBranch, branch: opts.compareBranch};
60+
return {type: CompareWithTypeEnum.latestCommitInBranch, branch: opts.compareBranch};
6161
}
6262

6363
if (opts.compareCommit) {
64-
return {type: compareWithTypeEnum.exactCommit, commitSha: opts.compareCommit};
64+
return {type: CompareWithTypeEnum.exactCommit, commitSha: opts.compareCommit};
6565
}
6666

6767
// In GA CI figure out what to compare against with github actions events
@@ -70,13 +70,13 @@ export async function resolveCompareWith(opts: StorageOptions): Promise<CompareW
7070
case "pull_request": {
7171
const eventData = getGithubEventData<GithubActionsEventData["pull_request"]>();
7272
const baseBranch = eventData.pull_request.base.ref; // base.ref is already parsed
73-
return {type: compareWithTypeEnum.latestCommitInBranch, branch: baseBranch};
73+
return {type: CompareWithTypeEnum.latestCommitInBranch, branch: baseBranch};
7474
}
7575

7676
case "push": {
7777
const eventData = getGithubEventData<GithubActionsEventData["push"]>();
7878
const branch = parseBranchFromRef(github.context.ref);
79-
return {type: compareWithTypeEnum.latestCommitInBranch, branch: branch, before: eventData.before};
79+
return {type: CompareWithTypeEnum.latestCommitInBranch, branch: branch, before: eventData.before};
8080
}
8181

8282
default:
@@ -86,5 +86,5 @@ export async function resolveCompareWith(opts: StorageOptions): Promise<CompareW
8686

8787
// Otherwise compare against the default branch
8888
const defaultBranch = await getDefaultBranch(opts);
89-
return {type: compareWithTypeEnum.latestCommitInBranch, branch: defaultBranch};
89+
return {type: CompareWithTypeEnum.latestCommitInBranch, branch: defaultBranch};
9090
}

0 commit comments

Comments
 (0)