From 6dc01401549523b9ef89113fcde4d7fe0344b321 Mon Sep 17 00:00:00 2001 From: KathiravanKrish <147697986+KathiravanKrish@users.noreply.github.com> Date: Thu, 18 Jul 2024 10:56:25 +0530 Subject: [PATCH] Update test.yml --- .github/workflows/test.yml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3f5c4f51..a47cbf6e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -5,9 +5,12 @@ on: jobs: build: runs-on: ubuntu-latest + steps: - - uses: actions/checkout@v4 - - name: Use Node.js 18.x - uses: actions/setup-node@v4 - with: - node-version: '18.x' + - uses: actions/checkout@v4 + - name: Set up Node.js + uses: actions/setup-node@v4 + with: + node-version: '18' # Update to the desired Node.js version + - run: npm install + - run: npm test