This repository was archived by the owner on Mar 31, 2026. It is now read-only.
content: Update cover pages for MA Court Order and Social Security (#… #270
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: Storybook | |
| on: | |
| push: | |
| branches: main | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| pages: write | |
| id-token: write | |
| jobs: | |
| deploy: | |
| name: Deploy | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup PNPM | |
| uses: pnpm/action-setup@v4 | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| cache: "pnpm" | |
| - name: Deploy to GitHub Pages | |
| uses: bitovi/github-actions-storybook-to-github-pages@v1.0.3 | |
| with: | |
| install_command: pnpm install | |
| build_command: pnpm build-storybook | |
| path: storybook-static | |
| checkout: false |