
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
github-actions-parser
Advanced tools

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.
Some usages examples:
// 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
tbd
tbd
const result = evaluateExpression("${{ env.TEST == 42 }}, {
get(contextName: "github" | "env" | ...) {
if (contextName === "env) {
return {
TEST: 42
};
}
return {};
}
}) // Evaluates to true
lib/expressions - Parser and evaluator for GitHub Actions workflow expressionslib/parser - Generic YAML parser with validation and auto-complete supportlib/parser/schema - TypeScript based YAML schemalib/workflowschema - GitHub Actions workflow specific parse/complete/hover functions, this is the main exported functionalityIn 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.
This library is built on some great open-source projects:
action.yml files for inputs auto-completion)FAQs

The npm package github-actions-parser receives a total of 7 weekly downloads. As such, github-actions-parser popularity was classified as not popular.
We found that github-actions-parser demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.