New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@savvy-web/github-action-effects

Package Overview
Dependencies
Maintainers
1
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@savvy-web/github-action-effects

Effect-based utility library for building robust, well-logged, and schema-validated GitHub Actions.

latest
Source
npmnpm
Version
0.11.12
Version published
Maintainers
1
Created
Source

@savvy-web/github-action-effects

npm version License: MIT TypeScript Node.js 24

Composable Effect services for building GitHub Actions with schema-validated inputs, structured logging, and GitHub API operations -- zero @actions/* dependencies.

Features

  • Zero CJS dependencies -- native ESM implementations of the GitHub Actions runtime protocol replace all @actions/* packages
  • 29 composable services -- action I/O, GitHub API, git operations, package publishing, and more
  • Schema-validated inputs -- read action inputs via Effect's Config API with built-in parsing and defaults
  • Structured logging -- Effect Logger maps to workflow commands with collapsible groups and buffer-on-failure
  • In-memory test layers -- every service ships a test layer for fast, deterministic unit tests

Installation

npm install @savvy-web/github-action-effects effect @effect/platform @effect/platform-node

Quick Start

import { Config, Effect } from "effect";
import { Action, ActionOutputs } from "@savvy-web/github-action-effects";

const program = Effect.gen(function* () {
  const name = yield* Config.string("package-name");
  const outputs = yield* ActionOutputs;
  yield* outputs.set("result", `checked ${name}`);
});

Action.run(program);

Action.run provides ActionsRuntime.Default (ConfigProvider, Logger, core services, and Node.js platform layers), catches errors, and sets the workflow exit status automatically.

Documentation

For service reference, architecture, testing guides, and advanced usage, see docs/.

License

MIT

Keywords

github-actions

FAQs

Package last updated on 25 Mar 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts