Use cache instead of artifacts

This commit is contained in:
Sergey Dolin
2023-06-30 10:15:37 +02:00
parent c7d43763bf
commit ab422d01a2
76 changed files with 5960 additions and 5586 deletions
+4
View File
@@ -0,0 +1,4 @@
export interface IStateStorage {
save(serializedState: string): Promise<void>;
restore(): Promise<string>;
}
@@ -1,4 +1,4 @@
import {IIssue} from './issue';
import {IIssue} from '../issue';
export interface IState {
isIssueProcessed(issue: IIssue): boolean;