npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@thaitype/actions

v0.1.1

Published

Type-safe Github Actions Helpers

Downloads

24

Readme

@thaitype/actions

Type-safe Github Actions Helpers

Build & Test codecov

Introduction

@thaitype/actions is a TypeScript library designed to enhance GitHub Actions with type safety. This library addresses the gap in the official GitHub Actions Toolkit @actions/core, which lacks a robust, type-safe way to handle action inputs. By integrating @thaitype/actions, developers can ensure their GitHub Actions workflows are more reliable and easier to maintain.

Why Use @thaitype/actions?

Problem Statement

When using the standard GitHub Actions Toolkit, developers often retrieve inputs like this:

import * as core from '@actions/core';
const data = core.getInput('data');

However, this approach does not enforce type safety, leading to potential runtime errors and maintenance challenges. Additionally, aligning these inputs with the action.yaml file can be error-prone and cumbersom.

You can also read the official docs and you can see the TypeScript Github Actions Boilerplate

Our Solution

@thaitype/actions introduces a type-safe layer, ensuring inputs are validated and conform to a predefined structure. It uses JSON Schema and data validation libraries, with current support for Zod, to achieve this.

How to Get Started

Install the package:

npm install @thaitype/actions

To integrate @thaitype/actions into your project, start by importing necessary classes and defining your input schema using Zod. For example:

const _githubActionsInputSchema = z.object({
  command: z.union([z.literal('hello'), z.literal('goodbye')]),
  extra_parameters: z.string().optional(),
  option_hello_name: z.string().optional(),
  option_hello_age: z.string({ description: 'text' }).optional(),
});

Use the provided ZodParser to obtain type-safe GitHub Actions inputs:

import { ZodParser } from '@thaitype/actions';

export async function githubInputs() {
  return new ZodParser(_githubActionsInputSchema).getInputs();
}

Access the type-safe inputs:

const inputs = githubInputs();

The resulting type will be:

type inputs =  {
    command: "hello" | "goodbye";
    extraParameters?: string | undefined;
    optionHelloName?: string | undefined;
    optionHelloAge?: string | undefined;
}

When testing locally, use a .env file to set inputs:

INPUT_COMMAND=hello
INPUT_EXTRA_PARAMETERS=extra
INPUT_OPTION_HELLO_NAME=thaitype
INPUT_OPTION_HELLO_AGE=2

You can also automatically generate action.yaml metadata files from your Zod schema. This is useful for ensuring your action.yaml file is always up-to-date with your schema. To do this, use the ZodParser class:

import { GithubActions } from '@thaitype/actions';

const metadataPath = './action.yml';
const dev = process.env.NODE_ENV === 'development';

new GithubActions({ metadataPath, dev })
  .setInputs(_githubActionsInputSchema)
  .setMetadata({
    name: 'Hello World',
    description: 'Greet someone and record the time',
    runs: {
      using: 'node20',
      main: 'index.js',
    },
  })
  .write();

Features

  • Type-safe GitHub Actions Inputs: Ensure type safety when retrieving inputs in your GitHub Actions workflows.
  • Convert Zod Schema: Automatically generate action.yaml metadata files from your Zod schema.
  • Auto-convert Key Naming: Convert keys from SnakeCase to CamelCase for consistent usage.
  • Zod Support: Currently supports the Zod data validation library.

Supported Schema Types

@thaitype/actions supports two primary schema types:

  • ZodObject: Ideal for structured, object-based inputs.
  • ZodUnion: Useful for inputs that can take multiple forms.

You can the example in example folder.

Contributing to @thaitype/actions

We welcome contributions! Whether you're fixing bugs, adding features, or improving documentation, your input is valuable. Here’s how you can contribute:

  1. Fork the Repository: Start by forking the repository on GitHub.
  2. Create a New Branch: Make your changes in a new git branch.
  3. Implement Your Changes: Write or update code and documentation in your branch.
  4. Write Tests: Ensure your changes are covered by tests.
  5. Submit a Pull Request: Open a pull request to merge your branch into the main codebase.
  6. Code Review: Maintain team members will review your contribution.