@knapsack-pro/core
Version:
Knapsack Pro Core library splits tests across CI nodes and makes sure that tests will run in optimal time on each CI node. This library gives core features like communication with KnapsackPro.com API. This library is a dependency for other projects specif
14 lines (13 loc) • 563 B
TypeScript
import { CIProviderBase } from '.';
export declare class GithubActions extends CIProviderBase {
static get ciNodeTotal(): undefined;
static get ciNodeIndex(): undefined;
static get ciNodeBuildId(): string | undefined;
static get ciNodeRetryCount(): string | undefined;
static get commitHash(): string | undefined;
static get branch(): string | undefined;
static get userSeat(): string | undefined;
static get detect(): typeof CIProviderBase | null;
static get fixedQueueSplit(): boolean;
static get ciProvider(): string;
}