File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -192,7 +192,8 @@ jobs:
192192 run : npm install
193193
194194 - name : Test
195- run : npm run test:${{matrix.build-type}} -- --maxWorkers 4 --minWorkers 2 --maxConcurrency 2
195+ # run: npm run test:${{matrix.build-type}} -- --maxWorkers 4 --minWorkers 2 --maxConcurrency 2
196+ run : npm run test:${{matrix.build-type}}
196197
197198 test-example :
198199 runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 1- import { availableParallelism } from 'node:os' ;
1+ // import { availableParallelism } from 'node:os';
22
33import { defineConfig } from 'vitest/config' ;
44
@@ -12,7 +12,7 @@ export default defineConfig({
1212 test : {
1313 reporters : REPORTERS ,
1414 disableConsoleIntercept : true ,
15- maxConcurrency : Math . max ( availableParallelism ( ) / 2 , 5 ) ,
15+ // maxConcurrency: Math.max(availableParallelism() / 2, 5),
1616 printConsoleTrace : true ,
1717 passWithNoTests : false ,
1818 include : [ 'test/**/*.js' ] ,
You can’t perform that action at this time.
0 commit comments