From c867c111726b3b857c6eb09d7e1d64ee63ea224d Mon Sep 17 00:00:00 2001 From: Gamingkiller5 Date: Wed, 25 Feb 2026 07:32:43 +0530 Subject: [PATCH] Update index.md --- content/actions/get-started/index.md | 49 ++++++++++++++++++---------- 1 file changed, 31 insertions(+), 18 deletions(-) diff --git a/content/actions/get-started/index.md b/content/actions/get-started/index.md index 0355f5fd8549..11b72c1ba30a 100644 --- a/content/actions/get-started/index.md +++ b/content/actions/get-started/index.md @@ -1,18 +1,31 @@ ---- -title: Get started with GitHub Actions -shortTitle: Get started -intro: Learn the basics of GitHub Actions. -versions: - fpt: '*' - ghes: '*' - ghec: '*' -children: - - /quickstart - - /understand-github-actions - - /continuous-integration - - /continuous-deployment - - /actions-vs-apps -redirect_from: - - /actions/about-github-actions - - /actions/concepts/overview ---- +name: Node.js CI/CD Workflow + +on: + push: + branches: + - main + pull_request: + branches: + - main + +jobs: + build: + runs-on: ubuntu-latest + strategy: + matrix: + node-version: [20.x] + + steps: + - name: Checkout repository + uses: actions/checkout@v3 + + - name: Set up Node.js + uses: actions/setup-node@v3 + with: + node-version: ${{ matrix.node-version }} + + - name: Install dependencies + run: npm install + + - name: Start application + run: npm start