LG-2725: refactor SegmentedControlOption to use Polymorphic instead of Box #4757
Workflow file for this run
This file contains 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: File Size | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
sizeDiff: | |
name: Check file size | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
version: 9.15.0 | |
- name: Use Node.js 18 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- uses: preactjs/compressed-size-action@v2 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
build-script: 'build --force' | |
clean-script: 'clean' |