[JN-463] Support adding new question templates #56
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Sonar | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- development | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
sonar-java: | |
name: SonarCloud Java | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
- name: Scan via gradle | |
run: >- | |
./gradlew | |
--build-cache | |
-x test | |
-x spotlessJava | |
-x spotlessJavaApply | |
-x spotlessJavaCheck | |
-x spotlessCheck | |
-x spotlessApply | |
build sonar -info | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
sonar-typescript: | |
name: SonarCloud TypeScript | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
subproject: ['ui-admin', 'ui-core', 'ui-participant'] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Get branch name | |
id: branch-name | |
uses: tj-actions/branch-names@v5 | |
- name: Scan ${{ matrix.subproject }} via sonarcloud-github-action | |
uses: SonarSource/sonarcloud-github-action@master | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
with: | |
projectBaseDir: ${{ github.workspace }}/${{ matrix.subproject }} | |
args: > | |
-Dsonar.branch.target=${{ github.event.repository.default_branch }} | |
-Dsonar.branch.name=${{ steps.branch-name.outputs.current_branch }} | |
- name: Announce | |
run: | | |
gh pr comment ${{ github.event.pull_request.number }} \ | |
--body "SonarCloud [analyzed ${{ matrix.subproject }} on ${{ steps.branch-name.outputs.current_branch }}](https://sonarcloud.io/summary/new_code?id=broadinstitute_juniper-${{ matrix.subproject }}&branch=${{ steps.branch-name.outputs.current_branch }})" | |
env: | |
GH_TOKEN: ${{ github.token }} |