Reproduce tsx watch issue #11
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: Reproduce tsx watch issue | |
| on: | |
| workflow_dispatch: | |
| jobs: | |
| repro-for-module: | |
| strategy: | |
| matrix: | |
| module: [chalk, prom-client, swagger-stats, googleapis] | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "18.20.4" | |
| - name: Install dev dependencies | |
| run: npm install tsx concurrently | |
| - name: Install module | |
| run: npm install ${{ matrix.module }} | |
| - name: Run issue causing script (concurrently with tsx watch) (npm run watch-with-concurrently --module=<module>) | |
| run: npm run watch-with-concurrently --module=${{ matrix.module }} |