Skip to content

Reproduce tsx watch issue #11

Reproduce tsx watch issue

Reproduce tsx watch issue #11

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 }}