small fix for docker-cli command if user is on windows, escape $ with ` instad of \ #314
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: TypeScript and Code Formatting Check | |
| on: [push, pull_request, workflow_dispatch] | |
| jobs: | |
| check-format: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup Bun | |
| uses: oven-sh/setup-bun@v1 | |
| - name: Install Prettier | |
| run: bun install | |
| - name: Check for formatting errors | |
| run: bun run format-check | |
| - name: Check for TS errors | |
| run: bun run tsc |