diff --git a/.github/workflows/build-storybook.yml b/.github/workflows/build-storybook.yml deleted file mode 100644 index 2a29d2c58..000000000 --- a/.github/workflows/build-storybook.yml +++ /dev/null @@ -1,32 +0,0 @@ -name: Build and Deploy Storybook - -on: - push: - branches: - - main - pull_request: - -jobs: - build: - runs-on: ubuntu-latest - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - - name: Setup Node.js - uses: actions/setup-node@v4 - with: - node-version: 20 - cache: 'npm' - - - name: Install dependencies - run: npm ci - - - name: Build Storybook - run: npm run build:storybook - - - name: Upload Storybook Artifact - uses: actions/upload-artifact@v4 - with: - name: storybook - path: dist/storybook