From 6fd9caeec806564657328f9174a7e08ced4abe31 Mon Sep 17 00:00:00 2001 From: princegupta1131 <114015020+princegupta1131@users.noreply.github.com> Date: Thu, 23 May 2024 13:05:59 +0530 Subject: [PATCH] ED-4000 feat: Github actions instead of Jenkins --- .github/workflows/ci-cd.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index 27eeaec69cb..069dacac752 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -45,13 +45,14 @@ jobs: - name: Cache node modules uses: actions/cache@v2 with: - path: ./node_modules - key: dependency-cache-portal-${{ hashFiles('package.json') }} + path: portal/src/app/client/node_modules + key: dependency-cache-portal-${{ hashFiles('portal/src/app/client/package.json') }} restore-keys: | dependency-cache-portal- - name: Execute test cases using JEST run: npm run test:ci + working-directory: portal/src/app/client - name: Install Sonar Scanner run: |