@@ -5,14 +5,14 @@ import {isGaRun} from "../github/context.js";
5
5
import { IHistoryProvider } from "../history/provider.js" ;
6
6
import { validateBenchmark } from "../history/schema.js" ;
7
7
8
- enum CompareWithType {
9
- latestCommitInBranch = "latestCommitInBranch" ,
10
- exactCommit = "exactCommit" ,
11
- }
8
+ const CompareWithTypeEnum = {
9
+ latestCommitInBranch : "latestCommitInBranch" ,
10
+ exactCommit : "exactCommit" ,
11
+ } as const ;
12
12
13
13
export type CompareWith =
14
- | { type : CompareWithType . latestCommitInBranch ; branch : string ; before ?: string }
15
- | { type : CompareWithType . exactCommit ; commitSha : string } ;
14
+ | { type : typeof CompareWithTypeEnum . latestCommitInBranch ; branch : string ; before ?: string }
15
+ | { type : typeof CompareWithTypeEnum . exactCommit ; commitSha : string } ;
16
16
17
17
export async function resolveCompare ( provider : IHistoryProvider , opts : StorageOptions ) : Promise < Benchmark | null > {
18
18
const compareWith = await resolveCompareWith ( opts ) ;
@@ -29,10 +29,10 @@ export async function resolvePrevBenchmark(
29
29
provider : IHistoryProvider
30
30
) : Promise < Benchmark | null > {
31
31
switch ( compareWith . type ) {
32
- case CompareWithType . exactCommit :
32
+ case CompareWithTypeEnum . exactCommit :
33
33
return await provider . readHistoryCommit ( compareWith . commitSha ) ;
34
34
35
- case CompareWithType . latestCommitInBranch : {
35
+ case CompareWithTypeEnum . latestCommitInBranch : {
36
36
// Try first latest commit in branch
37
37
return await provider . readLatestInBranch ( compareWith . branch ) ;
38
38
}
@@ -41,10 +41,10 @@ export async function resolvePrevBenchmark(
41
41
42
42
export function renderCompareWith ( compareWith : CompareWith ) : string {
43
43
switch ( compareWith . type ) {
44
- case CompareWithType . exactCommit :
44
+ case CompareWithTypeEnum . exactCommit :
45
45
return `exactCommit ${ compareWith . commitSha } ` ;
46
46
47
- case CompareWithType . latestCommitInBranch : {
47
+ case CompareWithTypeEnum . latestCommitInBranch : {
48
48
if ( compareWith . before ) {
49
49
return `latestCommitInBranch '${ compareWith . branch } ' before commit ${ compareWith . before } ` ;
50
50
} else {
@@ -57,11 +57,11 @@ export function renderCompareWith(compareWith: CompareWith): string {
57
57
export async function resolveCompareWith ( opts : StorageOptions ) : Promise < CompareWith > {
58
58
// compare may be a branch or commit
59
59
if ( opts . compareBranch ) {
60
- return { type : CompareWithType . latestCommitInBranch , branch : opts . compareBranch } ;
60
+ return { type : CompareWithTypeEnum . latestCommitInBranch , branch : opts . compareBranch } ;
61
61
}
62
62
63
63
if ( opts . compareCommit ) {
64
- return { type : CompareWithType . exactCommit , commitSha : opts . compareCommit } ;
64
+ return { type : CompareWithTypeEnum . exactCommit , commitSha : opts . compareCommit } ;
65
65
}
66
66
67
67
// 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
70
70
case "pull_request" : {
71
71
const eventData = getGithubEventData < GithubActionsEventData [ "pull_request" ] > ( ) ;
72
72
const baseBranch = eventData . pull_request . base . ref ; // base.ref is already parsed
73
- return { type : CompareWithType . latestCommitInBranch , branch : baseBranch } ;
73
+ return { type : CompareWithTypeEnum . latestCommitInBranch , branch : baseBranch } ;
74
74
}
75
75
76
76
case "push" : {
77
77
const eventData = getGithubEventData < GithubActionsEventData [ "push" ] > ( ) ;
78
78
const branch = parseBranchFromRef ( github . context . ref ) ;
79
- return { type : CompareWithType . latestCommitInBranch , branch : branch , before : eventData . before } ;
79
+ return { type : CompareWithTypeEnum . latestCommitInBranch , branch : branch , before : eventData . before } ;
80
80
}
81
81
82
82
default :
@@ -86,5 +86,5 @@ export async function resolveCompareWith(opts: StorageOptions): Promise<CompareW
86
86
87
87
// Otherwise compare against the default branch
88
88
const defaultBranch = await getDefaultBranch ( opts ) ;
89
- return { type : CompareWithType . latestCommitInBranch , branch : defaultBranch } ;
89
+ return { type : CompareWithTypeEnum . latestCommitInBranch , branch : defaultBranch } ;
90
90
}
0 commit comments