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

actions-inputs

v0.0.3

Published

[GitHub Actions] Auto generate action.yml input params types for usage in TypeScript

Downloads

11

Readme

Actions Inputs

[GitHub Actions] Auto generate and use input parameters in TypeScript

Main goal of this module is to auto-generate type-safe code for working with GitHub Actions inputs.

Use it in Your Action

  1. Install it yarn|npm add actions-inputs
  2. Fill action.yml with input parameters like this:
inputs:
  # You can also use uppercase here. It doesn't really matter.
  COMMIT_MESSAGE:
    description: |
      The commit message that will be used to commit the changed files. Check the README for all interpolation options.
    # if input isn't provided, Action runner will pick default value even if required is true
    default: "auto-update: replace files from source"
    required: false
  DRY_RUN:
    # specify type explicity here if it isn't a string and you don't have default value
    description: |
      [boolean] Run everything except for the copying, removing and commiting functionality.
    required: true
  RETRIES:
    description:
      [number] The number of retries.
    # You can specify string in default, it will be parsed to number anyway.
    default: 3
    required: false
  1. Define postinstall script in package.json:
{
    "scripts": {
        //...
        "postinstall": "actions-inputs generate"
    }
}
  1. Run postinstall script or yarn actions-inputs generate command in order to generate library so that you can safely use it in your code. You need to run this command every time after you edit action.yml.
  2. Use it in your code:
import { inputs } from "actions-inputs";

inputs.dry_run
// => boolean

inputs.retries
// => 3 (if user doesn't provide their value)

Temporary Limitations

  • TypeScript is used to generate library. It's in regular dependencies.
  • You need to manually generate library in postinstall script.

Things to Note

  • Passing an empty string is the same as not passing anything.

Options

You can set options before first getInput call.

List of options: interface Options.

Possible Types

By default the type infers from input's default property, but if it's required and not a string, you need to specify type in start of description like this: description: [boolean] should I show you a red light?.

  • [string] (default) Any value treats as valid
  • [boolean] Valid: true, false, 0, 1
  • [number] Valid: 54.33, Infinity. Invalid: 5 px

TODO

  • [ ] Auto generate type inputs edit in action.yml (show warning on main)
  • [ ] Use main-dev Action deploy system (remove required)
  • [ ] Describe Files Structure and does it work. Why some ts files in src why some in src etc.
  • [ ] Testsss
  • [ ] Add --watch options
  • [ ] StringArray type