From 94411ccb173522ba8295bbab5f4210e2b13678d4 Mon Sep 17 00:00:00 2001 From: ROHIT SHARMA Date: Fri, 10 May 2024 23:45:04 +0530 Subject: [PATCH] Update hello_world.yaml --- .github/workflows/hello_world.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/hello_world.yaml b/.github/workflows/hello_world.yaml index b2ed3f6..c0e0ae2 100644 --- a/.github/workflows/hello_world.yaml +++ b/.github/workflows/hello_world.yaml @@ -7,10 +7,13 @@ jobs: runs-on: ubuntu-latest steps: - - name: Check out repository - uses: actions/checkout@v2 + - name: Use Node.js 16.x + uses: actions/setup-node@v3 with: node-version: '16.x' + - name: Check out repository + uses: actions/checkout@v2 + - name: Run Hello World script run: echo "Hello, World!"