@hugoalh/github-actions-core
TypeScript icon, indicating that this package has built-in type declarations

0.4.2 • Public • Published

GitHub Actions - Core (ES)

⚖️ MIT

GitHub: hugoalh/github-actions-core-es JSR: @hugoalh/github-actions-core NPM: @hugoalh/github-actions-core

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.

⚠️ Important

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.

🌟 Features

  • Ability to use directly on GitHub Actions with Deno runtime without complex setup.
  • Compatible with bundler.
  • Full ModuleJS.

🔰 Begin

🎯 Targets

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.

#️⃣ Resources Identifier

  • 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 property exports for available sub entrypoints.

  • It is recommended to use this module with tag for immutability.

🛡️ Require Runtime Permissions

This module does not require any runtime permission.

🧩 APIs (Excerpt)

  • 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]

✍️ Examples

  • writeNotice("Hello, world!");
    //=> ::notice::Hello, world!

Package Sidebar

Install

npm i @hugoalh/github-actions-core

Weekly Downloads

138

Version

0.4.2

License

MIT

Unpacked Size

232 kB

Total Files

87

Last publish

Collaborators

  • hugoalh