chore(deps): update nuget non-major dependencies #5858
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 |