chore(deps-dev): bump @storybook/react-vite from 8.6.14 to 9.0.14 in the storybook group #539
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: Review | |
| on: | |
| pull_request: | |
| types: [labeled] | |
| permissions: | |
| contents: read | |
| pages: write | |
| id-token: write | |
| jobs: | |
| deploy-storybook: | |
| if: ${{ github.event.label.name == 'review' }} | |
| name: Deploy Storybook to GH Pages | |
| runs-on: ubuntu-latest | |
| environment: | |
| name: github-pages | |
| env: | |
| NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
| REGISTRY_TOKEN: ${{ secrets.REGISTRY_TOKEN }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Build | |
| run: yarn && yarn build-storybook | |
| - name: Upload | |
| uses: actions/upload-pages-artifact@v3.0.1 | |
| with: | |
| path: preview | |
| - id: deploy | |
| name: Deploy to GitHub Pages | |
| uses: actions/deploy-pages@v4 |