[클린코드 리액트 3기 조용준] 장바구니 미션 Step2 (#59) #2
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: | |
branches: | |
- main | |
- bytrustu | |
paths: | |
- 'src/components/**' | |
- 'src/styles/**' | |
jobs: | |
chromatic-deployment: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '20' | |
- name: Install Dependencies | |
run: yarn install | |
- name: Run Chromatic | |
uses: chromaui/action@v1 | |
with: | |
token: chpt_806b995c8415312 | |
projectToken: chpt_806b995c8415312 | |
exitZeroOnChanges: true |