Merge remote-tracking branch 'origin/main' into 12474-remove-duplicat… #3377
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: Configuration coverage stats | |
on: | |
push: | |
paths: | |
- 'frontend/app-development/**' | |
- 'frontend/packages/ux-editor/**' | |
- 'frontend/scripts/configurationStats/**' | |
- '.github/workflows/frontend-config-coverage.yml' | |
jobs: | |
stats: | |
name: 'Generate stats on configuration coverage' | |
runs-on: ubuntu-latest | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
steps: | |
- name: 'Checking Out Code' | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: 'Installing Dependencies' | |
run: cd frontend/scripts && yarn --immutable | |
- name: 'Running stats generation' | |
run: cd frontend/scripts && yarn run generate-config-coverage-stats |