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

github-actions-parser

v0.27.0

Published

![CI](https://github.com/cschleiden/github-actions-parser/workflows/CI/badge.svg)

Downloads

62

Readme

github-actions-parser

CI

This package provides a parser and various language-server related features for GitHub Actions.

Auto-completion and validation of expressions (e.g., ${{ secrets.FOO }}) requires information about the repository that contains the workflow as well as an authenticated Octokit client for making API calls.

Usage

Some usages examples:

Parse a workflow

// Workflow text
const input = "on: ..."

const workflowDoc = await parse({
  client, // Authenticated Octokit client. Needs at least `repo`, `actions`, and for org-secrets also org admin permissions
  owner: "repository-owner",
  repository: "repository"
}, input)

// workflowDoc.workflow // Parsed, normalized workflow
// workflowDoc.diagnostics // Errors/warnings
// workflowDoc.workflowST // AST

Auto-complete

tbd

Get "hover" information

tbd

Evaluate an expression

const result = evaluateExpression("${{ env.TEST == 42 }}, {
  get(contextName: "github" | "env" | ...) {
    if (contextName === "env) {
      return {
        TEST: 42
      };
    }

    return {};
  }
}) // Evaluates to true

Structure

  • lib/expressions - Parser and evaluator for GitHub Actions workflow expressions
  • lib/parser - Generic YAML parser with validation and auto-complete support
  • lib/parser/schema - TypeScript based YAML schema
  • lib/workflowschema - GitHub Actions workflow specific parse/complete/hover functions, this is the main exported functionality

Caching

In order to auto-complete and validate parts of the workflow depending on the state of other repositories (Actions being used) or some data in the repository the parser needs to make API calls. The results of the API calls are cached for some time to avoid making too many calls. The cache lives in the imported module, which works well for VS Code, for example, where switching repositories means reloading the editor but could lead to issues if the same instance of the module is used for different repositories.

Acknowledgements

This library is built on some great open-source projects:

  • octokit/rest for making API calls to GitHub
  • js-yaml for general parsing (e.g., action.yml files for inputs auto-completion)
  • yaml-ast-parser for parsing the workflow into an AST for validation/auto-completion
  • chevrotain for parsing and running expressions