Skip to content

fix: yml 수정

fix: yml 수정 #1

name: storybook-deloyment
on: push
jobs:
storybook-deloyment:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
run_install: false
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
- name: Install node modules
run: pnpm install
- name: Lint
run: pnpm lint
- name: deploy storybook on chromatic
uses: chromaui/action@latest
with:
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
autoAcceptChanges: "main"