Skip to content

Commit

Permalink
ED-4000 feat: Github actions instead of Jenkins
Browse files Browse the repository at this point in the history
  • Loading branch information
princegupta1131 committed May 23, 2024
1 parent 19259ec commit 6fd9cae
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down

0 comments on commit 6fd9cae

Please sign in to comment.