fix(spindle-ui): storybookのButtonGroup横並びストーリーのボタン順序を修正 #15065
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: build | |
| on: | |
| - push | |
| - pull_request | |
| jobs: | |
| build: | |
| name: build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 | |
| - uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6.0.8 | |
| - uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0 | |
| with: | |
| node-version-file: package.json | |
| cache: pnpm | |
| - run: pnpm install --frozen-lockfile | |
| # Build all packages except spindle-icons to check if the system works or not | |
| # spindle-icons is excluded because it requires FIGMA_TOKEN and fetches data from Figma API on every build | |
| # Note: pnpm v10.28.1+ has a bug that includes root package when using negation filter (pnpm/pnpm#10485) | |
| # Workaround: use positive filter to select packages from ./packages/* then exclude spindle-icons | |
| - name: build all packages | |
| run: | | |
| pnpm --filter './packages/*' --filter '!@openameba/spindle-icons' -r build | |
| pnpm build:extensionReplace |