add callouts encouraging use of nx commands for client builds #1217
Workflow file for this run
This file contains hidden or 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: Scan | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- "main" | |
pull_request: | |
types: [opened, synchronize, reopened] | |
branches-ignore: | |
- "main" | |
pull_request_target: | |
types: [opened, synchronize, reopened] | |
branches: | |
- "main" | |
permissions: {} | |
jobs: | |
check-run: | |
name: Check PR run | |
uses: bitwarden/gh-actions/.github/workflows/check-run.yml@main | |
permissions: | |
contents: read | |
sast: | |
name: Checkmarx | |
uses: bitwarden/gh-actions/.github/workflows/_checkmarx.yml@main | |
needs: check-run | |
secrets: | |
AZURE_SUBSCRIPTION_ID: ${{ secrets.AZURE_SUBSCRIPTION_ID }} | |
AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }} | |
AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }} | |
permissions: | |
contents: read | |
pull-requests: write | |
security-events: write | |
id-token: write | |
quality: | |
name: Sonar | |
uses: bitwarden/gh-actions/.github/workflows/_sonar.yml@main | |
needs: check-run | |
secrets: | |
AZURE_SUBSCRIPTION_ID: ${{ secrets.AZURE_SUBSCRIPTION_ID }} | |
AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }} | |
AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }} | |
permissions: | |
contents: read | |
pull-requests: write | |
id-token: write |