Skip to content

Commit

Permalink
Added in sonar work
Browse files Browse the repository at this point in the history
  • Loading branch information
TaylorHalf committed Feb 8, 2024
1 parent fd08fd3 commit 7270805
Show file tree
Hide file tree
Showing 3 changed files with 364 additions and 151 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/pr-plan.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: PR-checks

on:
push:
branches: ['develop','feature/CB2-10780']
pull_request:
branches: ['develop','feature/CB2-10780']

jobs:
scanner:
permissions:
id-token: write
contents: write
pull-requests: write
runs-on: X64
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: ${{ secrets.CVS_MGMT_AWS_ROLE }}
aws-region: ${{ secrets.DVSA_AWS_REGION }}
role-session-name: ''
- uses: aws-actions/aws-secretsmanager-get-secrets@v1
with:
secret-ids: sonarqube-gha
parse-json-secrets: true
- name: Install dependencies
run: npm ci
- name: Run SonarQube scanner
run: |
npm run test && \
npm run sonar-scanner -- \
-Dsonar.host.url=${{ env.SONARQUBE_GHA_URL }} \
-Dsonar.token=${{ env.SONARQUBE_GHA_TOKEN }} \
-Dsonar.login=${{ env.SONARQUBE_GHA_TOKEN }} \
-Dsonar.projectName=${{ github.repository }} \
-Dsonar.projectVersion=1.0.${{ github.run_id }}
Loading

0 comments on commit 7270805

Please sign in to comment.