Add member button link to ITK Samf member site #5188
This file contains hidden or 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' | |
# https://github.com/reviewdog/action-eslint/issues/29#issuecomment-985939887 | |
on: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
- ready_for_review | |
workflow_dispatch: | |
jobs: | |
chromatic-deployment: | |
if: ${{ !github.event.pull_request.draft }} | |
# https://www.chromatic.com/docs/github-actions | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: frontend | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Install dependencies | |
run: yarn | |
- name: Publish to Chromatic | |
uses: chromaui/action@v1 | |
with: | |
workingDir: frontend | |
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }} |