fix(history): let a hosted account's LID resolve to its phone number #793
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: Build Check on PR | |
| on: | |
| pull_request: | |
| branches: [main, beta] | |
| push: | |
| branches: [main, beta] | |
| workflow_dispatch: | |
| jobs: | |
| type-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v7 | |
| - name: Install Bun | |
| uses: oven-sh/setup-bun@v2 | |
| - name: Cache Dependencies | |
| uses: actions/cache@v6 | |
| with: | |
| path: ~/.bun/install/cache | |
| key: ${{ runner.os }}-bun-deps-v2-${{ hashFiles('bun.lock') }} | |
| restore-keys: | | |
| ${{ runner.os }}-bun-deps-v2- | |
| - name: Install Dependencies | |
| run: bun install | |
| - name: Run TypeScript type check | |
| run: bun run build-check |