An ES (JavaScript & TypeScript) module to provide a better and easier way for GitHub Actions to communicate with the runner, and the toolkit for developing GitHub Actions.
This is a partial refactor of the official toolkit, not all of the features in the official toolkit are available in here, and not all of the features in here are available in the official toolkit.
- Ability to use directly on GitHub Actions with Deno runtime without complex setup.
- Compatible with bundler.
- Full ModuleJS.
Remote | JSR | NPM | |
---|---|---|---|
Bun >= v1.1.0 | ❌ | ❓ | ✔️ |
Deno >= v1.42.0 | ✔️ | ✔️ | ✔️ |
NodeJS >= v16.13.0 | ❌ | ❓ | ✔️ |
[!NOTE]
- It is possible to use this module in other methods/ways which not listed in here, however those methods/ways are not officially supported, and should beware maybe cause security issues.
-
Remote - GitHub Raw:
https://raw.githubusercontent.com/hugoalh/github-actions-core-es/{Tag}/mod.ts
-
JSR:
[jsr:]@hugoalh/github-actions-core[@{Tag}]
-
NPM:
[npm:]@hugoalh/github-actions-core[@{Tag}]
[!NOTE]
For usage of remote resources, it is recommended to import the entire module with the main path
mod.ts
, however it is also able to import part of the module with sub path if available, but do not import if:
- it's path has an underscore prefix (e.g.:
_foo.ts
,_util/bar.ts
), or- it is a benchmark or test file (e.g.:
foo.bench.ts
,foo.test.ts
), or- it's symbol has an underscore prefix (e.g.:
_bar
,_foo
).These elements are not considered part of the public API, thus no stability is guaranteed for them.
For usage of JSR or NPM resources, it is recommended to import the entire module with the main entrypoint, however it is also able to import part of the module with sub entrypoint if available, please visit the file
jsr.jsonc
propertyexports
for available sub entrypoints.It is recommended to use this module with tag for immutability.
This module does not require any runtime permission.
-
function addPATH(path: string, options?: GitHubActionsSetEnvironmentVariableOptions): void; function addPATH(paths: string[], options?: GitHubActionsSetEnvironmentVariableOptions): void;
-
function addSecretMask(...values: string[]): void;
-
function enterLogGroup(title: string = ""): void;
-
function exitLogGroup(): void;
-
function getInput(key: string, options?: GitHubActionsGetParameterOptions & { fallback?: true; require?: false; }): string; function getInput(key: string, options: GitHubActionsGetParameterOptions & { require: true; }): string; function getInput(key: string, options: GitHubActionsGetParameterOptions & { fallback: false; require?: false; }): string | undefined;
-
function getState(key: string, options?: GitHubActionsGetParameterOptions & { fallback?: true; require?: false; }): string; function getState(key: string, options: GitHubActionsGetParameterOptions & { require: true; }): string; function getState(key: string, options: GitHubActionsGetParameterOptions & { fallback: false; require?: false; }): string | undefined;
-
function setEnvironmentVariable(key: string, value: StringizableType, options?: GitHubActionsSetEnvironmentVariableOptions): void; function setEnvironmentVariable(pairs: KeyValueLike<StringizableType>, options?: GitHubActionsSetEnvironmentVariableOptions): void;
-
function setOutput(key: string, value: StringizableType): void; function setOutput(pairs: KeyValueLike<StringizableType>): void;
-
function setState(key: string, value: StringizableType): void; function setState(pairs: KeyValueLike<StringizableType>): void;
-
function writeDebug(...data: string[]): void;
-
function writeError(data: string, properties: GitHubActionsAnnotationProperties = {}): void;
-
function writeNotice(data: string, properties: GitHubActionsAnnotationProperties = {}): void;
-
function writeWarning(data: string, properties: GitHubActionsAnnotationProperties = {}): void;
[!NOTE]
- For the full or prettier documentation, can visit via:
-
writeNotice("Hello, world!"); //=> ::notice::Hello, world!