Workflow - CI/CD用語集の定義
GitHub Actions では、workflow とは .github/workflows/ 配下の YAML ファイルで定義される自動化されたプロセスで、1 つ以上の job で構成されます。
関連ガイド
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…