feat: 전체 충전소 수정 완료시 전체 충전소 페이지도 업데이트 되는 기능 구현한다 #43
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: Storybook Deployment | |
on: | |
pull_request: | |
branches: | |
- develop | |
jobs: | |
storybook: | |
runs-on: ubuntu-20.04 | |
permissions: write-all | |
outputs: | |
status: ${{ job.status }} | |
steps: | |
- name: checkout repository | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: cache dependencies | |
id: cache | |
uses: actions/cache@v3 | |
with: | |
path: '**/node_modules' | |
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}-storybook | |
- name: depedency install | |
if: steps.cache.outputs.cache-hit != 'true' | |
run: npm ci | |
- name: publish to chromatic | |
id: chromatic | |
uses: chromaui/action@v1 | |
with: | |
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }} | |
token: ${{ secrets.GITHUB_TOKEN }} |