
Product
Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.
actions-parsers
Advanced tools
This library tries to improve building actions for Github Actions using Typescript. It might be a bit opinionated, but I feel it's important to make sure inputs are validated and type-safe.
There are some ease-of-life added features here:
Another big thing is that this package re-exports all input-related functions in
@actions/core
with improved types.
To learn more, check out this issue: https://github.com/actions/toolkit/issues/1290
yarn add actions-parsers @actions/core
import * as parsers from 'actions-parsers';
export const config = {
/**
* Functions from `@actions/core`:
**/
simpleString: parsers.getInput('simple-string'),
// 👆 Type is string or undefined
simpleRequiredString: parsers.getInput('simple-required-string', { required: true }),
// 👆 Type is string or undefined
multilineString: parsers.getMultilineInput('multiline', { required: true }).
// 👆 Type is string[]
aNumericValue: parsers.getNumber('a-numeric-value'),
// 👆 Type is number or undefined.
type: parsers.getUnion('type', { alternatives: ['one', 'two'] as const }),
// 👆 Type is "one" | "two" | undefined
literal: parsers.getLiteral('literal', { requiredValue: 'hello-world' }),
// 👆 Type is "hello-world" | undefined
}
If combined with Runtypes, Zod or any other runtime validation for static types can get parsed type-safe YAML, for example like this:
import { getYAMLInput } from 'actions-parsers';
import * as rt from 'runtypes';
const inputFieldRt = rt.Record({
firstKey: rt.String,
literal: rt.Literal('hello-world'),
anArrayOfObject: rt.Array(
rt.Record({
key: rt.String,
value: rt.String,
}),
),
});
export const yamlValue = getYAMLInput('input-field', {
parser: value => inputFieldRt.check(value),
});
This is also possible to do the same with getParsedInput
, like this:
import { getParsedInput } from 'actions-parsers';
import { z } from 'zod';
const aDateFieldZod = z
.date()
.min(new Date('1900-01-01'), { message: 'Too old' })
.max(new Date(), { message: 'Too young!' });
export const aDateField = getParsedInput('a-field', {
parser: value => aDateFieldZod.parse(value),
});
FAQs
Unknown package
The npm package actions-parsers receives a total of 76 weekly downloads. As such, actions-parsers popularity was classified as not popular.
We found that actions-parsers 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.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.