Improve FfmpegOutput shutdown if there's an error in the Ffmpeg process #167
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: Pyright static type checking | |
| on: | |
| pull_request: | |
| branches: ['*'] | |
| workflow_dispatch: | |
| jobs: | |
| type-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Install Node.js (needed for Pyright) | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: current | |
| - name: Install Pyright | |
| run: npm install -g pyright | |
| - name: Run Pyright static type checker | |
| run: pyright |