fix: [SDK-4341] populate push token from raw subscription for local-id models #1506
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: Run Tests | |
| on: | |
| pull_request: | |
| branches: | |
| - '**' | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Setup Vite+ | |
| uses: voidzero-dev/setup-vp@v1 | |
| with: | |
| node-version-file: '.nvmrc' | |
| cache: true | |
| - name: Check Build | |
| run: vp run build:prod | |
| - name: Lint | |
| run: vp run lint | |
| - name: Test | |
| run: vp run test |