[Snyk] Security upgrade firebase from 8.10.0 to 10.9.0 #1673
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: 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: | |
yarn_audit_scan: | |
name: yarn audit | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: rwjblue/setup-volta@v1 | |
- name: Install dependencies via yarn | |
working-directory: ./frontend | |
run: yarn install | |
- name: yarn audit | |
working-directory: ./frontend | |
run: yarn audit --groups dependencies | |