feat!: externalize sidebar toggle and remove navOpen state from the SDK #3591
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: Size | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| paths-ignore: | |
| - '**.test.*' | |
| - '**.md' | |
| env: | |
| NODE_OPTIONS: --max_old_space_size=4096 | |
| jobs: | |
| compressed-size: | |
| name: Compressed Size | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: preactjs/compressed-size-action@v2 | |
| env: | |
| NODE_OPTIONS: --max_old_space_size=4096 | |
| YARN_IGNORE_ENGINES: 'true' # skip validation for node20 requirement | |
| with: | |
| repo-token: '${{ secrets.GITHUB_TOKEN }}' | |
| pattern: './dist/**/*.{?(c|m)js,css,json}' | |
| strip-hash: "\\b\\w{8}\\." |