@action-class/action-yml
April 17, 2023 ยท View on GitHub
Typed representation of the
action.ymlstructure. See Metadata syntax for GitHub Actions for more information about theaction.ymlstructure.
Usage
Install the package
npm install @action-class/action-yml
Import the ActionYml type
import type { ActionYml } from '@action-class/action-yml';
Examples
Read an action.yml file
This example reads an action.yml file and parses it into a ActionYml object using the js-yaml package.
import * as fs from 'fs/promises';
import * as yaml from 'js-yaml';
import type { ActionYml } from '@action-class/action-yml';
const actionYml = yaml.load(await fs.readFile('action.yml', 'utf8')) as ActionYml;
License
This library is published under the MIT license.