Workflow - Definição do Glossário de CI/CD
No GitHub Actions, um workflow é um processo automatizado definido em um arquivo YAML sob .github/workflows/, composto por um ou mais jobs.
Guias relacionados
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…