Skip to content

Add speech-speed setting and fix repeat-step replay lock #2012

Add speech-speed setting and fix repeat-step replay lock

Add speech-speed setting and fix repeat-step replay lock #2012

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