1.0.0 • Published 3 years ago
@action-class/action-yml v1.0.0
@action-class/action-yml
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-ymlImport 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.
1.0.0
3 years ago