The 3-Step CI Pipeline Blueprint
Create `.github/workflows/ci.yml` in your repository: 1. Trigger on every `push` and `pull_request` to `main`. 2. Run automated lint checks (`npm run lint`). 3. Execute unit test suites (`npm run test`). 4. Add the resulting green "Passing" badge to your repository README.