Skip to content

Fixed debug skeleton position. #334

Fixed debug skeleton position.

Fixed debug skeleton position. #334

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