Update GitHub Actions to use CodeQL SARIF upload v2 in image scan wor… #563
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: Sonar Scanner | |
on: | |
push: | |
branches: [dev, feature/*] | |
env: | |
REGISTRY: ghcr.io | |
REGISTRY_USERNAME: ${{ secrets.CONTAINER_REGISTRY_USERNAME }} | |
REGISTRY_PASSWORD: ${{ secrets.CONTAINER_REGISTRY_PASSWORD }} | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '14' | |
- name: Run Tests | |
run: | | |
docker compose up keycloak -d | |
set -o allexport | |
source ./.env.local | |
LOG_LEVEL=debug | |
KNEX_HOST=kong-db.localtest.me | |
NEXT_PUBLIC_MOCKS=off | |
set +o allexport | |
cd src | |
npm i | |
npm run intg-build | |
npm test | |
cd .. | |
docker compose down | |
- name: SonarCloud Scan | |
uses: sonarsource/sonarcloud-github-action@master | |
with: | |
args: > | |
-Dsonar.organization=bcgov-oss | |
-Dsonar.projectKey=aps-portal | |
-Dsonar.host.url=https://sonarcloud.io | |
-Dsonar.sources=src/auth,src/authz,src/batch,src/services | |
-Dsonar.javascript.lcov.reportPaths=./src/__coverage__/lcov.info | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} |