feat(condo): DOMA-12528 fix NotificationUserSettings query #5381
Workflow file for this run
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: Request UI Review | |
| on: | |
| pull_request: | |
| types: | |
| - labeled | |
| jobs: | |
| chromatic: | |
| if: ${{ github.event.label.name == '👨🏻🎨 Request UI-kit review' }} | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Checkout code with submodules | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| submodules: recursive | |
| ssh-key: ${{ secrets.SSH_DOCK_SERVER_PRIVATE_KEY }} | |
| - name: Install packages | |
| run: | | |
| npm i -g turbo | |
| yarn install --immutable | |
| - name: Publish chromatic build | |
| uses: chromaui/action@v1 | |
| with: | |
| workingDir: packages/ui | |
| projectToken: ${{ secrets.UI_CHROMATIC_PROJECT_TOKEN }} | |
| buildScriptName: "build:chromatic" |