feat: OPS-1639 PR2 - Budget Team Requisition Review Card #241
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: Storybook Build | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - "frontend/src/components/**" | |
| - "frontend/.storybook/**" | |
| - "frontend/package.json" | |
| - "frontend/bun.lock" | |
| push: | |
| branches: [main] | |
| paths: | |
| - "frontend/src/components/**" | |
| - "frontend/.storybook/**" | |
| - "frontend/package.json" | |
| - "frontend/bun.lock" | |
| jobs: | |
| storybook-build: | |
| name: Storybook Build | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| - uses: ./.github/actions/setup-javascript | |
| - name: Build Storybook | |
| working-directory: ./frontend | |
| run: CI=true timeout 600 bun run build-storybook |