[FE] 새 방 비교 페이지를 완성하고 방 선택 페이지를 만들어 연결한다. #769
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Chromatic" | |
on: | |
pull_request: | |
branches: [dev-fe, dev] | |
paths: | |
- "frontend/**" | |
jobs: | |
chromatic: | |
name: Run Chromatic | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Cache dependencies | |
id: cache | |
uses: actions/cache@v3 | |
with: | |
path: "**/node_modules" | |
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-yarn- | |
- name: Install dependencies | |
if: steps.cache.outputs.cache-hit != 'true' | |
run: | | |
cd frontend | |
yarn install --frozen-lockfile | |
- name: Run Chromatic | |
uses: chromaui/action@latest | |
id: publish_chromatic | |
with: | |
workingDir: frontend | |
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }} | |
- name: Comment on PR | |
uses: thollander/actions-comment-pull-request@v2 | |
with: | |
message: "🚀 **storybook**: ${{ steps.publish_chromatic.outputs.storybookUrl }}" |