From 5bffdcc780e7e1c0c11cbe8eb0d2fec085dc5778 Mon Sep 17 00:00:00 2001 From: Vinay Kumar B M <41902979+VinayKumarBM@users.noreply.github.com> Date: Mon, 29 Jan 2024 14:56:44 +0530 Subject: [PATCH] Update node.js.yml --- .github/workflows/node.js.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index f6dc736..6aa74c0 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -13,11 +13,11 @@ jobs: runs-on: windows-latest steps: - name: Checkout code from repository - uses: actions/checkout@v4 - - name: Setting up Node.js 20 - uses: actions/setup-node@v4.0.1 + uses: actions/checkout@v3 + - name: Setting up Node.js 18 + uses: actions/setup-node@v3 with: - node-version: 20 + node-version: 18 cache: 'npm' - name: Install dependencies run: npm ci && npx playwright install @@ -30,7 +30,7 @@ jobs: run: npx ts-node ./src/framework/reporter/HTMLReporter.ts - name: Upload test results if: always() - uses: actions/upload-artifact@v4.0.1 + uses: actions/upload-artifact@v3 with: name: test-results path: test-results @@ -49,14 +49,14 @@ jobs: needs: [ tests ] steps: - name: Download Artifacts - uses: actions/download-artifact@v4.1.1 + uses: actions/download-artifact@v3 id: download with: name: allure-results path: allure-results - name: Get Allure history - uses: actions/checkout@v4 + uses: actions/checkout@v2 if: always() continue-on-error: true with: