Use cache instead of artifacts

This commit is contained in:
Sergey Dolin
2023-06-23 23:13:39 +02:00
parent c7d43763bf
commit ab422d01a2
76 changed files with 5960 additions and 5586 deletions

View File

@@ -3,13 +3,13 @@ import {IssuesProcessor} from './classes/issues-processor';
import {isValidDate} from './functions/dates/is-valid-date';
import {IIssuesProcessorOptions} from './interfaces/issues-processor-options';
import {Issue} from './classes/issue';
import {StateService} from './services/state.service';
import {getStateInstance} from './services/state.service';
async function _run(): Promise<void> {
try {
const args = _getAndValidateArgs();
const state = StateService.getState();
const state = getStateInstance(args);
await state.rehydrate();
const issueProcessor: IssuesProcessor = new IssuesProcessor(args, state);