Skip to content

Instantly share code, notes, and snippets.

@sfboss
Last active June 5, 2025 17:06
Show Gist options
  • Select an option

  • Save sfboss/847289da86ce2c0d91810402c390813c to your computer and use it in GitHub Desktop.

Select an option

Save sfboss/847289da86ce2c0d91810402c390813c to your computer and use it in GitHub Desktop.
name: Code Analysis
on: [push, pull_request]
jobs:
scan:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install SFDX
uses: sfdx-actions/setup-sfdx@v1
- name: Install Scanner
run: sfdx plugins:install @salesforce/sfdx-scanner
- name: Run Analysis
run: sfdx scanner:run --target="./" --format=junit --outfile=results.xml
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment