clients/subs: cleanup subscriptions view #6427
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 | |
on: | |
push: | |
paths: | |
- clients/** | |
- .github/workflows/chromatic.yaml | |
jobs: | |
chromatic-deployment: | |
name: "Publish 🎨" | |
timeout-minutes: 15 | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # chromatic requires the full history for it's smartness | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: 9.2.0 | |
- name: Setup Node.js environment | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: clients/.node-version | |
cache: "pnpm" | |
cache-dependency-path: "clients/pnpm-lock.yaml" | |
- name: Install dependencies | |
working-directory: ./clients | |
run: pnpm install | |
- name: Build SDK | |
working-directory: ./clients | |
run: pnpm turbo run build --filter=@polar-sh/sdk | |
- name: Publish to Chromatic | |
uses: chromaui/action@v11 | |
with: | |
projectToken: ${{ secrets.CI_CHROMATIC_PROJECT_TOKEN }} | |
workingDir: ./clients/apps/web | |
onlyChanged: true | |
exitOnceUploaded: true |