fix: show live transcript in standalone notes #14365
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: fmt | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - .github/workflows/fmt.yaml | |
| pull_request: | |
| jobs: | |
| fmt: | |
| runs-on: depot-ubuntu-24.04-4 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: pnpm/action-setup@v4 | |
| with: | |
| run_install: false | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: "22" | |
| - run: pnpm install --frozen-lockfile --ignore-scripts | |
| - uses: ./.github/actions/rust_install | |
| - uses: actions/cache@v4 | |
| with: | |
| path: ~/.cache/dprint/cache/plugins | |
| key: dprint-${{ hashFiles('dprint.json') }} | |
| - run: pnpm fmt:check | |
| - uses: dprint/check@v2.3 | |
| with: | |
| config-path: dprint.json |