Fixed issue with create form and clean up Cypress tests (#11674) #122
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/**' | |
- '.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/stats && yarn --immutable | |
- name: 'Running stats generation' | |
run: cd frontend/stats && yarn run generate-config-coverage-stats |