chore(deps): bump @storybook/addon-interactions from 8.3.2 to 8.4.0 #857
Workflow file for this run
This file contains 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: Build Storybook (Fork) | |
on: | |
pull_request: | |
branches: | |
- 'main' | |
jobs: | |
build-storybooks: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install dependencies | |
run: npm ci | |
- name: Build PIA Storybook | |
run: npx nx run portal-integration-angular:build-storybook | |
- name: Build AA Storybook | |
run: npx nx run angular-accelerator:build-storybook | |
- name: Upload build artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: storybook-dist | |
path: dist/storybook/ | |