Skip to content

๐Ÿ› CI pnpm ๋ฒ„์ „ ์ถฉ๋Œ ํ•ด๊ฒฐ (#34) #2

๐Ÿ› CI pnpm ๋ฒ„์ „ ์ถฉ๋Œ ํ•ด๊ฒฐ (#34)

๐Ÿ› CI pnpm ๋ฒ„์ „ ์ถฉ๋Œ ํ•ด๊ฒฐ (#34) #2

Workflow file for this run

name: Deploy Storybook
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
- run: pnpm install --frozen-lockfile
- run: pnpm build-storybook
env:
NODE_OPTIONS: --max_old_space_size=4096
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./storybook-static