chore(deps): bump the jest group across 1 directory with 2 updates #36488
This file contains hidden or 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: DCR Bundle Analyser | |
| on: | |
| push: | |
| paths-ignore: | |
| - 'apps-rendering/**' | |
| - 'dotcom-rendering/docs/**' | |
| jobs: | |
| build_check: | |
| name: DCR Bundle Analyser | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v5 | |
| - name: Set up Node environment | |
| uses: ./.github/actions/setup-node-env | |
| - name: Generate production build | |
| run: make build | |
| working-directory: dotcom-rendering | |
| - name: Archive code coverage results for web bundle | |
| uses: actions/upload-artifact@v5 | |
| with: | |
| name: bundle-analyser-report-web-bundles | |
| path: dotcom-rendering/dist/stats/client.web-bundles.html | |
| if-no-files-found: error | |
| - name: Archive code coverage results for web variant bundle | |
| uses: actions/upload-artifact@v5 | |
| with: | |
| name: bundle-analyser-report-web | |
| path: dotcom-rendering/dist/stats/client.web.variant-bundles.html | |
| if-no-files-found: warn # Variant bundle only exists when an active experiment is going on | |
| - name: Archive code coverage results for apps bundle | |
| uses: actions/upload-artifact@v5 | |
| with: | |
| name: bundle-analyser-report-apps | |
| path: dotcom-rendering/dist/stats/client.apps-bundles.html | |
| if-no-files-found: error |