deps(deps-dev): bump @next/bundle-analyzer from 15.5.18 to 16.2.6 #83
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, master] | |
| pull_request: | |
| branches: [main, master] | |
| concurrency: | |
| group: storybook-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| name: Build Storybook static | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 20 | |
| cache: npm | |
| - name: Install | |
| run: npm ci | |
| - name: Build Storybook | |
| run: npm run build-storybook --workspace frontend | |
| env: | |
| # next/font/google fetches at build time; downstream stories rely on | |
| # the fonts being available, but they fall back gracefully if the | |
| # network is restricted in CI. | |
| NEXT_PUBLIC_API_URL: http://localhost:4000 |