Skip to content
Merged
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ inputs:
pr-number:
description: 'PR number (auto-detected from event payload in most cases)'
default: ''
tsconfig-path:
description: 'Path to tsconfig.json (auto-detected if not set)'
default: ''
outputs:
mode:
description: 'The mode that was executed: "store" or "check"'
Expand Down
5 changes: 5 additions & 0 deletions bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion dist/action.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/action.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions dist/core.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ export interface StoreOptions {
title?: string;
mergedAt?: string;
twoDot?: boolean;
tsconfigPath?: string;
}
export interface StoreResult {
symbolsAdded: number;
Expand All @@ -17,6 +18,7 @@ export interface StoreResult {
export interface CheckOptions {
base: string;
lookbackDays: number;
tsconfigPath?: string;
}
export interface CheckResult {
regressions: Regression[];
Expand Down
Loading
Loading