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 30, 2024
1 parent b9aad69 commit 695a5ce
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,13 @@ jobs:
- name: Install server dependencies
run: yarn install --ignore-engines --no-progress --production=true
working-directory: $GITHUB_WORKSPACE/app_dist
working-directory: ${{ github.workspace }}/app_dist

- name: Build and run server scripts
run: |
mv dist/index.html dist/index.ejs
node helpers/resourceBundles/build.js -task="phraseAppPull"
working-directory: $GITHUB_WORKSPACE/app_dist
working-directory: ${{ github.workspace }}/app_dist

- name: Run tests
run: npm run test:ci
Expand All @@ -62,4 +62,4 @@ jobs:
- name: Run Sonar Scanner
run: /tmp/sonar-scanner-5.0.1.3006-linux/bin/sonar-scanner
working-directory: $GITHUB_WORKSPACE
working-directory: ${{ github.workspace }}

0 comments on commit 695a5ce

Please sign in to comment.