Workflow - CI/CD Glossary Definition
In GitHub Actions, a workflow is an automated process defined in a YAML file under .github/workflows/, made up of one or more jobs.
Related guides
Job - CI/CD Glossary DefinitionJob: A **job** is a set of steps that run on a single runner. Jobs run in parallel by default and can depend…
Step - CI/CD Glossary DefinitionStep: A **step** is a single task in a job - either a shell command (`run:`) or an action (`uses:`).
GitHub Actions Workflow Template for Node.jsA ready-to-use GitHub Actions workflow for Node.js with caching and best practices - copy, commit, and run fa…