add text story #17
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: Deploy Storybook | |
| on: | |
| push: | |
| branches: | |
| - deploy-storybook | |
| pull_request: | |
| branches: | |
| - deploy-storybook | |
| jobs: | |
| deploy-storybook: | |
| name: Deploy Storybook to GitHub Pages | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| pages: write | |
| id-token: write | |
| strategy: | |
| matrix: | |
| node-version: [22] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| version: 10 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| registry-url: https://registry.npmjs.org/ | |
| cache: 'pnpm' | |
| - name: Init IBM Fonts to Storybook Web | |
| run: npm run init-ibm-fonts-storybook-web | |
| - name: Deploy | |
| uses: bitovi/github-actions-storybook-to-github-pages@v1.0.3 | |
| with: | |
| install_command: pnpm install --frozen-lockfile | |
| build_command: npm run storybook-build | |
| path: ./storybook/.dist | |
| checkout: false |