feat(3091): Store user metadata in ios native storage for notifications #2964
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: Mobile tests | |
| on: | |
| pull_request: | |
| paths: | |
| - packages/mobile/** | |
| jobs: | |
| desktop-tests: | |
| timeout-minutes: 25 | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-22.04] | |
| steps: | |
| - name: "Print OS" | |
| run: echo ${{ matrix.os }} | |
| - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
| with: | |
| submodules: 'recursive' | |
| - name: Setup environment | |
| uses: ./.github/actions/setup-env | |
| with: | |
| bootstrap-packages: "@quiet/eslint-config,@quiet/logger,@quiet/common,@quiet/types,@quiet/state-manager,@quiet/backend,@quiet/identity,@quiet/mobile,backend-bundle,helia,@quiet/node-common" | |
| - name: "Unit tests" | |
| working-directory: packages/mobile | |
| run: npm test |