fix soon to be broken github actions that need the node24 runner #2026
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: Desktop visual regressions | |
| on: | |
| pull_request: | |
| jobs: | |
| chromatic-deployment: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-22.04] | |
| steps: | |
| - uses: dorny/paths-filter@v4 | |
| id: filter | |
| with: | |
| filters: | | |
| desktop: | |
| - 'packages/desktop/**' | |
| - name: "Skip tests" | |
| if: steps.filter.outputs.desktop == 'false' | |
| run: | | |
| echo "Skipping test run" | |
| exit 0 | |
| - name: "Print OS" | |
| if: steps.filter.outputs.desktop == 'true' | |
| run: echo ${{ matrix.os }} | |
| - uses: actions/checkout@v5 | |
| if: steps.filter.outputs.desktop == 'true' | |
| with: | |
| fetch-depth: 0 # Required to retrieve git history | |
| submodules: 'recursive' | |
| - name: Setup environment | |
| uses: ./.github/actions/setup-env | |
| if: steps.filter.outputs.desktop == 'true' | |
| with: | |
| bootstrap-packages: "@quiet/eslint-config,@quiet/logger,@quiet/common,@quiet/types,@quiet/state-manager,@quiet/backend,@quiet/identity,@quiet/desktop,backend-bundle,helia,@quiet/node-common" | |
| - name: "Publish to Chromatic" | |
| uses: chromaui/action@355e2a05a179e9e89c2b237dcd55adbeb89e577e # v1 | |
| if: steps.filter.outputs.desktop == 'true' | |
| with: | |
| workingDir: ./packages/desktop | |
| token: ${{ secrets.GH_TOKEN }} | |
| projectToken: 3218757eee04 |