fix: Incident Controller/Service typing #1402
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: Format Check (Client & Server) | |
| on: | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| format-client: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| - name: Install client dependencies | |
| working-directory: client | |
| run: npm install | |
| - name: Check client formatting | |
| working-directory: client | |
| run: npm run format-check | |
| format-server: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| - name: Install server dependencies | |
| working-directory: server | |
| run: npm install | |
| - name: Check server formatting | |
| working-directory: server | |
| run: npm run format-check |