[Feature] 스터디 수강생 페이지네이션 적용, 엑셀 다운로드 #153
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: "deploy-chromatic" | |
on: | |
pull_request: | |
branches: | |
- dev | |
paths: | |
- packages/ui/src/** | |
jobs: | |
chromatic-deployment: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Setup Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 20.x | |
- name: Cache Dependencies | |
uses: actions/cache@v2 | |
with: | |
path: ~/.pnpm-store | |
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-pnpm- | |
- name: Install pnpm | |
uses: pnpm/action-setup@v3 | |
with: | |
version: 8 | |
run_install: false | |
- name: Install Dependencies | |
run: pnpm install --no-frozen-lockfile | |
working-directory: packages/ui | |
- name: Publish Chromatic | |
id: chromatic | |
uses: chromaui/action@v1 | |
with: | |
workingDir: packages/ui/src | |
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }} | |
token: ${{ secrets.TOKEN }} | |
- name: Create comment PR | |
uses: thollander/actions-comment-pull-request@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.TOKEN }} | |
with: | |
message: "🚀 storybook: ${{ steps.chromatic.outputs.storybookUrl }}" |