0.27.0 • Published 2 years ago

github-actions-parser v0.27.0

Weekly downloads
64
License
MIT
Repository
github
Last release
2 years ago

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
0.27.0

2 years ago

0.26.0

2 years ago

0.25.0

2 years ago

0.24.0

3 years ago

0.23.0

3 years ago

0.22.0

3 years ago

0.21.0

3 years ago

0.21.1

3 years ago

0.20.0

3 years ago

0.19.0

3 years ago

0.18.0

3 years ago

0.17.0

3 years ago

0.16.0

3 years ago

0.15.0

3 years ago

0.14.0

3 years ago

0.13.3

3 years ago

0.13.2

3 years ago

0.13.1

3 years ago

0.13.0

3 years ago

0.12.0

3 years ago

0.11.0

3 years ago

0.10.1

3 years ago

0.9.0

3 years ago

0.8.6

4 years ago

0.8.5

4 years ago

0.8.4

4 years ago

0.8.3

4 years ago

0.8.2

4 years ago

0.8.1

4 years ago

0.8.0

4 years ago

0.7.7

4 years ago

0.7.6

4 years ago

0.7.5

4 years ago

0.7.4

4 years ago

0.7.2

4 years ago

0.7.3

4 years ago

0.7.1

4 years ago

0.7.0

4 years ago

0.6.0

4 years ago