Merge pull request #2928 from Brain-up/fix/background-noise-on-refresh #2008
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 App Composition Analysis | |
| on: | |
| pull_request: | |
| paths: | |
| - 'Dockerfile_frontend' | |
| - 'frontend/**' | |
| - '.github/workflows/fe-app-composition-analysis.yml' | |
| branches: | |
| - master | |
| push: | |
| paths: | |
| - 'Dockerfile_frontend' | |
| - 'frontend/**' | |
| - '.github/workflows/fe-app-composition-analysis.yml' | |
| branches: | |
| - master | |
| jobs: | |
| pnpm_audit_scan: | |
| name: pnpm audit | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: 22 | |
| - uses: pnpm/action-setup@v4 | |
| with: | |
| package_json_file: frontend/package.json | |
| - name: Install dependencies | |
| working-directory: ./frontend | |
| run: pnpm install | |
| - name: pnpm audit | |
| working-directory: ./frontend | |
| run: pnpm audit --prod | |
| continue-on-error: true |