fix: changed size to match padding of other icons #93
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 Preview | |
| on: | |
| pull_request: | |
| push: | |
| branches-ignore: | |
| - 'main' | |
| tags: | |
| - '!**' # excludes all tags | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup node | |
| uses: actions/setup-node@v4 | |
| - name: Install deps | |
| run: npm install | |
| - name: Build package | |
| run: npm run build | |
| - name: Publish preview | |
| # TODO: use the commented line below when package is react19 compatible | |
| # run: npx pkg-pr-new publish --compact --comment=update --template './.github/PREVIEW_TEMPLATE/*' | |
| run: npx pkg-pr-new publish --compact --comment=update |