[Snyk] Security upgrade swagger-ui from 5.0.0 to 5.30.2 #861
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: Frontend Admin Composition Analysis | |
| on: | |
| pull_request: | |
| paths: | |
| - 'Dockerfile_frontend' | |
| - 'frontend-angular/**' | |
| - '.github/workflows/fe-admin-composition-analysis.yml' | |
| branches: | |
| - master | |
| push: | |
| paths: | |
| - 'Dockerfile_frontend' | |
| - 'frontend-angular/**' | |
| - '.github/workflows/fe-admin-composition-analysis.yml' | |
| branches: | |
| - master | |
| jobs: | |
| npm_audit_scan: | |
| name: npm audit | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - uses: rwjblue/setup-volta@v1 | |
| - name: install dependencies via npm | |
| working-directory: ./frontend-angular | |
| run: npm install | |
| - name: npm audit | |
| working-directory: ./frontend-angular | |
| run: npm audit |