#818 Add OWASP dependency check to ci #639
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: backoffice service ci | |
on: | |
push: | |
branches: [ "main" ] | |
paths: | |
- "backoffice/**" | |
- ".github/workflows/actions/action.yaml" | |
- ".github/workflows/backoffice-ci.yaml" | |
pull_request: | |
branches: [ "main" ] | |
paths: | |
- "backoffice/**" | |
- ".github/workflows/actions/action.yaml" | |
- ".github/workflows/backoffice-ci.yaml" | |
workflow_dispatch: | |
jobs: | |
Build: | |
runs-on: ubuntu-latest | |
env: | |
FROM_ORIGINAL_REPOSITORY: ${{ github.event.pull_request.head.repo.full_name == github.repository || github.ref == 'refs/heads/main' }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- run: npm ci | |
working-directory: backoffice | |
- run: npm run build | |
working-directory: backoffice | |
- run: npm run lint | |
working-directory: backoffice | |
- run: npx prettier --check . | |
working-directory: backoffice | |
- name: SonarCloud Scan | |
if: ${{ env.FROM_ORIGINAL_REPOSITORY == 'true' }} | |
uses: SonarSource/sonarcloud-github-action@master | |
with: | |
projectBaseDir: backoffice | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
- name: OWASP Dependency Check | |
uses: dependency-check/Dependency-Check_Action@main | |
env: | |
JAVA_HOME: /opt/jdk | |
with: | |
project: 'yas' | |
path: '.' | |
format: 'HTML' | |
- name: Upload OWASP Dependency Check results | |
uses: actions/upload-artifact@master | |
with: | |
name: OWASP Dependency Check Report | |
path: ${{github.workspace}}/reports | |
- name: Log in to the Container registry | |
if: ${{ github.ref == 'refs/heads/main' }} | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and push Docker images | |
if: ${{ github.ref == 'refs/heads/main' }} | |
uses: docker/build-push-action@v6 | |
with: | |
context: ./backoffice | |
push: true | |
tags: ghcr.io/nashtech-garage/yas-backoffice:latest |