Node module for validating and parsing
screwdriver.yamlconfigurations
- Validates a
screwdriver.yamlfor structural and functional specification - Outputs the pipeline's workflowGraph configuration
- Generates a list of jobs to execute, including:
- build permutations
- environment variables to set
- steps to execute
- container image to use
shared:
environment:
NODE_ENV: testsettings:
email: foo@bar.comjobs:
main:
image: node:18steps:
- init: npm install
- test: npm testrequires:
- ~pr
- ~commitpublish:
environment:
NODE_TAG: latestimage: node:4steps:
- bump: npm run bump
- publish: npm publish --tag $NODE_TAG
- tag: git push origin --tagssecrets:
- NPM_TOKEN
- GIT_KEYrequires:
- mainnpm install screwdriver-config-parserParse in Node.js:
constparser=require('screwdriver-config-parser');// Configuration (in YAML form)parser(fs.readFileSync('screwdriver.yaml')).then((pipeline)=>{// Workflow for the pipeline// pipeline.workflowGraph// All the main jobs with the steps to execute and environment variables to set// pipeline.jobs.main[].commands// pipeline.jobs.main[].environment// pipeline.jobs.main[].image// All the publish jobs with the steps to execute and environment variables to set// pipeline.jobs.publish[].commands// pipeline.jobs.publish[].environment// pipeline.jobs.publish[].image});npm testCode licensed under the BSD 3-Clause license. See LICENSE file for terms.