feat(3091): Store user metadata in ios native storage for notifications #2021
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@v3 | |
| 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@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
| 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 |