fix: prefill "To" when composing email on proposal doctypes #71
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: Dashboard Unit Tests | |
| on: | |
| push: | |
| branches: | |
| - develop | |
| - main | |
| pull_request: | |
| merge_group: | |
| concurrency: | |
| group: unit-tests-buzz-${{ github.event.number || github.sha }} | |
| cancel-in-progress: true | |
| jobs: | |
| unit-tests: | |
| name: Unit Tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| # Pinned rather than lts/*: the tests are .ts files run straight through | |
| # node --test, which relies on the runtime's type stripping. | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "24" | |
| cache: "yarn" | |
| cache-dependency-path: dashboard/yarn.lock | |
| - name: Install dependencies | |
| working-directory: dashboard | |
| run: yarn install --frozen-lockfile | |
| - name: Run unit tests | |
| working-directory: dashboard | |
| run: yarn test:unit |