Skip to content

Merge pull request #67 from IT-Cotato/feature/60-kakao-login #56

Merge pull request #67 from IT-Cotato/feature/60-kakao-login

Merge pull request #67 from IT-Cotato/feature/60-kakao-login #56

Workflow file for this run

name: 'Chromatic'
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
jobs:
chromatic:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 10
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run Chromatic
uses: chromaui/action@v1
with:
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
token: ${{ secrets.GITHUB_TOKEN }}
buildScriptName: build-storybook
exitOnceUploaded: true