chore: test yarn modern #225
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: Bundle size | |
| on: | |
| pull_request: | |
| concurrency: | |
| # see https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#example-only-cancel-in-progress-jobs-or-runs-for-the-current-workflow | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| env: | |
| NX_PARALLEL: 6 # ubuntu-latest = 4-core CPU / 16 GB of RAM | macos-14-xlarge (arm) = 6-core CPU / 14 GB of RAM | |
| NX_PREFER_TS_NODE: true | |
| NX_VERBOSE_LOGGING: true | |
| BROWSERSLIST_IGNORE_OLD_DATA: true | |
| # Use project-local cache to avoid stale global Berry cache on CI | |
| # where workspace packages may collide with published npm versions | |
| YARN_ENABLE_GLOBAL_CACHE: false | |
| jobs: | |
| bundle-size: | |
| # if: ${{ github.repository_owner == 'microsoft' }} | |
| # runs-on: macos-14-xlarge | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: 'read' | |
| actions: 'read' | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Derive appropriate SHAs for base and head for `nx affected` commands | |
| uses: nrwl/nx-set-shas@826660b82addbef3abff5fa871492ebad618c9e1 # v4.3.3 | |
| with: | |
| main-branch-name: 'master' | |
| - uses: actions/setup-node@v6 | |
| with: | |
| cache: 'yarn' | |
| node-version: '22' | |
| - run: echo number of CPUs "$(getconf _NPROCESSORS_ONLN)" | |
| - run: yarn install --immutable | |
| - name: Build packages & create reports | |
| run: yarn nx affected -t bundle-size --nxBail | |
| - name: Compare bundle size with base | |
| run: npx monosize compare-reports --branch=${{ github.event.pull_request.base.ref }} --output=markdown --quiet > ./monosize-report.md | |
| - name: Save PR number | |
| run: echo ${{ github.event.number }} > pr.txt | |
| - uses: actions/upload-artifact@v6 | |
| with: | |
| name: monosize-report | |
| retention-days: 1 | |
| if-no-files-found: error | |
| path: | | |
| monosize-report.md | |
| pr.txt |