Skip to content

fix(storybook-deployments): Lets use storybook official documentation… #339

fix(storybook-deployments): Lets use storybook official documentation…

fix(storybook-deployments): Lets use storybook official documentation… #339

Workflow file for this run

name: Deploy Storybook to Github Pages
on:
push:
branches:
- dev
permissions:
contents: read
pages: write
id-token: write
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: 'pages'
cancel-in-progress: false
jobs:
build-and-deploy-storybook:
runs-on: ubuntu-latest
steps:
- name: Checkout 🗒️
uses: actions/checkout@v4
## install node and dependancies
- uses: actions/setup-node@v4
name: Setup Node.js
with:
node-version: '20.x'
- uses: pnpm/action-setup@v3
name: Install pnpm
id: pnpm-install
with:
version: 8.6.6
run_install: false
- name: Get pnpm store directory
id: pnpm-cache
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
- uses: actions/cache@v4
name: Setup pnpm cache
with:
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- uses: bitovi/[email protected]
with:
install_command: pnpm install
build_command: NODE_OPTIONS=--max_old_space_size=4096 pnpm run build-storybook
path: storybook-static
checkout: false