[DOC release] @example is not handled either by YUIdoc or our api docs site.
#1203
Workflow file for this run
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: Package Size Report | |
| on: | |
| pull_request: {} | |
| permissions: | |
| contents: read | |
| issues: write | |
| pull-requests: write | |
| jobs: | |
| pkg-size-report: | |
| name: Package Size Report | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| persist-credentials: false | |
| - uses: ./.github/actions/setup | |
| - uses: wyvox/pkg-size@c8fab09d60fb237b3ddadbc8abef9d850b00a729 | |
| with: | |
| build-command: "./bin/build-size-comparison-dists.sh" | |
| display-size: uncompressed, brotli | |
| unchanged-files: hide | |
| paths: | | |
| dist/dev | |
| dist/prod | |
| smoke-tests/v2-app-hello-world-template/dist | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |