Fixed debug skeleton position. #334
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: Check TypeScript Formatting | |
| on: | |
| push: | |
| workflow_dispatch: | |
| jobs: | |
| check-typescript: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Install Node and dependencies | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: "24" | |
| - name: Format TypeScript | |
| run: ./formatters/format-ts.sh | |
| - name: Check for changes | |
| run: | | |
| git ls-files -m | |
| if [[ `git ls-files -m` ]]; then echo "Detected TypeScript formatting errors!" & exit 1; fi |