refactor(frontend): drop watchjoin #30
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
| # THIS FILE WAS AUTOMATICALLY GENERATED BY KRES, PLEASE DO NOT EDIT. | |
| # | |
| # Generated on 2026-05-29T11:29:48Z by kres 8085f7d. | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| "on": | |
| push: | |
| branches: | |
| - main | |
| - release-* | |
| tags: | |
| - v* | |
| pull_request: | |
| branches: | |
| - main | |
| - release-* | |
| name: chromatic | |
| jobs: | |
| chromatic: | |
| name: Run chromatic | |
| runs-on: | |
| group: generic | |
| environment: | |
| name: Storybook preview | |
| url: ${{ steps.chromatic.outputs.storybookUrl }} | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # version: v6.0.2 | |
| with: | |
| fetch-depth: "0" | |
| - name: Setup Node.js | |
| uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # version: v6.4.0 | |
| with: | |
| node-version: 24.16.0 | |
| - name: Install dependencies | |
| run: | | |
| npm ci | |
| working-directory: frontend/ | |
| - name: Get token | |
| run: | | |
| chromaticProjectToken=$(sops decrypt --extract='["secrets"]["CHROMATIC_PROJECT_TOKEN"]' .secrets.yaml) | |
| echo "::add-mask::${chromaticProjectToken}" | |
| echo "CHROMATIC_PROJECT_TOKEN=${chromaticProjectToken}" >> $GITHUB_ENV | |
| - name: Run Chromatic | |
| id: chromatic | |
| uses: chromaui/action@8ad69a40dea06755a3c6db290f300a39e011433b # version: v17.1.0 | |
| with: | |
| projectToken: ${{ env.CHROMATIC_PROJECT_TOKEN }} | |
| workingDir: frontend/ |