-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17 from Central-MakeUs/chore-16
chore: 스토리북 배포
- Loading branch information
Showing
6 changed files
with
81 additions
and
21 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
name: 'Chromatic' | ||
|
||
on: | ||
push: | ||
branches: [main] | ||
pull_request: | ||
types: [opened, synchronize, reopened] | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
chromatic: | ||
name: Run Chromatic | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
ref: ${{ github.event.pull_request.head.ref }} | ||
|
||
env: | ||
CHROMATIC_BRANCH: ${{ github.event.pull_request.head.ref || github.ref_name }} | ||
CHROMATIC_SHA: ${{ github.event.pull_request.head.sha || github.ref }} | ||
CHROMATIC_SLUG: ${{ github.repository }} | ||
|
||
- name: pnpm-setup-node | ||
uses: ./.github/actions/pnpm-setup-node | ||
|
||
- name: Install dependencies | ||
# ⚠️ See your package manager's documentation for the correct command to install dependencies in a CI environment. | ||
run: pnpm install --frozen-lockfile | ||
|
||
- name: Run Chromatic | ||
id: chromatic | ||
uses: chromaui/action@latest | ||
with: | ||
# ⚠️ Make sure to configure a `CHROMATIC_PROJECT_TOKEN` repository secret | ||
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }} | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
onlyChanged: true | ||
exitZeroOnChanges: true | ||
|
||
- name: comment PR | ||
if: github.event_name == 'pull_request'&& steps.chromatic.outputs.storybookUrl != '' | ||
uses: thollander/actions-comment-pull-request@v3 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
message: | | ||
🚀 Storybook 리뷰가 준비되었습니다: | ||
- 프리뷰: ${{ steps.chromatic.outputs.storybookUrl }} | ||
- 빌드: ${{ steps.chromatic.outputs.buildUrl }} | ||
comment-tag: chromatic |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,4 +26,5 @@ dist-ssr | |
|
||
*storybook.log | ||
|
||
testResults.json | ||
testResults.json | ||
storybook-static |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ | |
"private": true, | ||
"version": "0.0.0", | ||
"type": "module", | ||
"packageManager": "[email protected]", | ||
"scripts": { | ||
"dev": "vite", | ||
"build": "tsc -b && vite build", | ||
|
@@ -65,6 +66,7 @@ | |
"@vitest/coverage-v8": "^2.1.8", | ||
"@vitest/eslint-plugin": "^1.1.24", | ||
"@vitest/ui": "^2.1.8", | ||
"chromatic": "^11.24.0", | ||
"eslint": "^9.17.0", | ||
"eslint-import-resolver-typescript": "^3.7.0", | ||
"eslint-plugin-import": "^2.31.0", | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.