What is the effect of placing node-ci.yml under .github/workflows with on: [push]?
node-ci.yml
.github/workflows
on: [push]
The workflow can only be started manually because push events are disabled
npm reads it as the project's dependency manifest
GitHub recognizes it as a workflow that can run when commits are pushed
Git treats it as a local pre-commit hook that never reaches GitHub