Feature/hide control elements in orthographic view #7
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: {} | |
| # Only needs read access + PR comment permission | |
| permissions: | |
| pull-requests: write | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| pkg-size: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - run: corepack enable | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version-file: '.node-version' | |
| cache: 'yarn' | |
| - uses: pkg-size/action@v1 | |
| with: | |
| build-command: yarn build | |
| display-size: uncompressed,gzip | |
| unchanged-files: hide | |
| sort-by: delta | |
| sort-order: desc | |
| hide-files: '{.yarn/**,node_modules/**}' | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |