Skip to content

[fix]: 소셜 링크 모달 스타일 에러 수정 (#271) (#272) #84

[fix]: 소셜 링크 모달 스타일 에러 수정 (#271) (#272)

[fix]: 소셜 링크 모달 스타일 에러 수정 (#271) (#272) #84

Workflow file for this run

# # .github/workflows/chromatic.yml
# # Workflow name
# name: 'Chromatic'
# # Event for the workflow
# on:
# pull_request:
# branches: [ dev ]
# paths: [ '**.stories.ts', '**.stories.tsx' ]
# # List of jobs
# jobs:
# chromatic-deployment:
# # Operating System
# runs-on: ubuntu-latest
# # Job steps
# steps:
# - uses: actions/checkout@v1
# - name: Install dependencies
# # 👇 Install dependencies with the same package manager used in the project (replace it as needed), e.g. yarn, npm, pnpm
# run: cd 42manito && yarn
# # 👇 Adds Chromatic as a step in the workflow
# - name: Publish to Chromatic
# id: chromatic
# uses: chromaui/action@v1
# # Chromatic GitHub Action options
# with:
# # 👇 Chromatic projectToken, refer to the manage page to obtain it.
# projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
# workingDir: 42manito/
# # Option to prevent the workflow from failing
# exitZeroOnChanges: true
# - name: Publish Summary
# run: echo -e "| Results | |\n| --- | --- |\n| Build Results | ${{steps.chromatic.outputs.buildUrl}} |\n| Storybook Preview | ${{steps.chromatic.outputs.storybookUrl}} |\n| Component Count | ${{steps.chromatic.outputs.componentCount}} |" >> $GITHUB_STEP_SUMMARY