There was an error while loading. Please reload this page.
1 parent 4b671d5 commit 1ffff4bCopy full SHA for 1ffff4b
1 file changed
.github/workflows/test.yml
@@ -69,5 +69,10 @@ jobs:
69
run: git diff --exit-code -- packages/rstack/binding.cjs packages/rstack/binding.d.cts
70
71
- name: Run Test
72
- if: steps.changes.outputs.changed == 'true'
+ if: steps.changes.outputs.changed == 'true' && runner.os != 'Windows'
73
run: node --run test
74
+
75
+ # Run package tests serially on Windows to avoid resource contention between nested test workers.
76
+ - name: Run Test (Windows)
77
+ if: steps.changes.outputs.changed == 'true' && runner.os == 'Windows'
78
+ run: pnpm --workspace-concurrency=1 --filter "./packages/**" test
0 commit comments