{"id":28919309,"url":"https://github.com/neha-dev-dot/ci-githubaction","last_synced_at":"2026-04-10T22:49:45.098Z","repository":{"id":299595114,"uuid":"1003534331","full_name":"neha-dev-dot/CI-GithubAction","owner":"neha-dev-dot","description":"This project is a hands-on implementation of Continuous Integration (CI) using GitHub Actions with a basic Node.js backend. The goal is to understand and demonstrate how CI pipelines can be automated using GitHub’s native CI/CD features.  The workflow runs automatically on every push or pull request to the main branch. ","archived":false,"fork":false,"pushed_at":"2025-06-17T10:01:37.000Z","size":0,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-06-17T10:42:57.297Z","etag":null,"topics":["continuous-integration","devops-tools","github-actions","github-actions-ci","nodejs"],"latest_commit_sha":null,"homepage":"https://github.com/neha-dev-dot/CI-GithubAction","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/neha-dev-dot.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-06-17T09:41:47.000Z","updated_at":"2025-06-17T10:01:41.000Z","dependencies_parsed_at":"2025-06-17T10:53:47.623Z","dependency_job_id":null,"html_url":"https://github.com/neha-dev-dot/CI-GithubAction","commit_stats":null,"previous_names":["neha-dev-dot/ci-cd-githubaction"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/neha-dev-dot/CI-GithubAction","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neha-dev-dot%2FCI-GithubAction","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neha-dev-dot%2FCI-GithubAction/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neha-dev-dot%2FCI-GithubAction/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neha-dev-dot%2FCI-GithubAction/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/neha-dev-dot","download_url":"https://codeload.github.com/neha-dev-dot/CI-GithubAction/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neha-dev-dot%2FCI-GithubAction/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261229093,"owners_count":23127554,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["continuous-integration","devops-tools","github-actions","github-actions-ci","nodejs"],"created_at":"2025-06-22T03:05:59.536Z","updated_at":"2026-04-10T22:49:45.090Z","avatar_url":"https://github.com/neha-dev-dot.png","language":"JavaScript","readme":"# Learning CI with GitHub Actions (Node.js App)\n\nHi! 👋  \nThis repository is a **Node.js backend project** that I randomly picked up (just for learning purposes) and tried implementing **CI (Continuous Integration)** using **GitHub Actions** for the first time.\n\n## 🧠 Why I Did This\n\nI wanted to learn how to:\n- Set up a basic GitHub Actions workflow\n- Automatically run steps like `npm install` after each push\n- Understand how CI works in real-time projects\n\n## 🔧 What I’ve Implemented\n\n✅ **CI (Continuous Integration)** is done!  \nEvery time I push code to the `main` branch:\n- GitHub Actions runs automatically\n- It installs dependencies using `npm install`\n- (Optional) It can run tests, but this project doesn't have any test cases yet.\n\n📂 Workflow file location: `.github/workflows/ci.yml`\n\n### GitHub Actions Workflow\n\n```yaml\n\nname: Node.js CI\n\non:\n  push:\n    branches: [ \"main\" ]\n  pull_request:\n    branches: [ \"main\" ]\n\njobs:\n  build:\n    runs-on: ubuntu-latest\n\n    steps:\n      - name: Checkout code\n        uses: actions/checkout@v3\n\n      - name: Setup Node.js\n        uses: actions/setup-node@v4\n        with:\n          node-version: '18'\n\n      - name: Install dependencies\n        run: npm install\n\n      - name: Placeholder test\n        run: echo \"No tests defined\"\n```\n\n## ❓Did I Do CD (Continuous Deployment)?\n❌ Not yet.\nCD (automatically deploying code to a server or platform like EC2, Vercel, etc.) is not done here.\n\nBut I plan to:\n\nConnect this to a server or platform in the next step\n\nDeploy the app automatically once CI passes\n\n## 🏁 How to Run Locally\n\n```\ngit clone https://github.com/your-username/ci-cd-using-github-action.git\ncd ci-cd-using-github-action\nnpm install\nnode server.js\n```\n\n## 🧑‍💻 Author\nNeha Bharti \u003cbr\u003e\nJust experimenting and learning DevOps! 💡\n\n\n---\n\nLet me know if you'd like me to help you **implement CD** as your next step — for example, deploying automatically to an EC2 server after CI passes.\n\n\n\n\n\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fneha-dev-dot%2Fci-githubaction","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fneha-dev-dot%2Fci-githubaction","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fneha-dev-dot%2Fci-githubaction/lists"}