diff --git a/.github/workflows/storybook-deploy.yml b/.github/workflows/storybook-deploy.yml deleted file mode 100644 index d456489..0000000 --- a/.github/workflows/storybook-deploy.yml +++ /dev/null @@ -1,34 +0,0 @@ -name: Deploy Storybook to Github Pages - -on: - push: - branches: - - main - -jobs: - build: - runs-on: ubuntu-latest - steps: - - name: Set up Repository - uses: actions/checkout@v3 - - - name : Set up Node 18.16.0 - uses: actions/setup-node@v3 - with: - node-version: 18.16.0 - - - name: Cache node_modules - id: cache - uses: actions/cache@v3 - with: - path: '**/node_modules' - key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} - restore-keys: | - ${{ runner.os }}-node- - - - name: npm clean install - run: npm ci - if: steps.cache.outputs.cache-hit != 'true' - - - name: deploy - run: npm run deploy \ No newline at end of file