๐feat : myPage, mainPage msw ์ฐ๊ฒฐ์งํ #216
Workflow file for this run
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 Deployment' | |
on: push | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Install dependencies in client directory | |
run: npm install --prefix client | |
- name: Install Chromatic | |
run: npm install --prefix client chromatic@6.24.1 | |
- name: Install cli-table module | |
run: npm install --prefix client cli-table | |
- name: Run Chromatic | |
run: bash -c 'cd client && npx chromatic --project-token=${{ secrets.CHROMATIC_PROJECT_TOKEN }} || true' | |
env: | |
PRIVATE_TOKEN: ${{ secrets.PRIVATE_TOKEN }} |