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:
192
192
run : npm install
193
193
194
194
- 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}}
196
197
197
198
test-example :
198
199
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';
2
2
3
3
import { defineConfig } from 'vitest/config' ;
4
4
@@ -12,7 +12,7 @@ export default defineConfig({
12
12
test : {
13
13
reporters : REPORTERS ,
14
14
disableConsoleIntercept : true ,
15
- maxConcurrency : Math . max ( availableParallelism ( ) / 2 , 5 ) ,
15
+ // maxConcurrency: Math.max(availableParallelism() / 2, 5),
16
16
printConsoleTrace : true ,
17
17
passWithNoTests : false ,
18
18
include : [ 'test/**/*.js' ] ,
You can’t perform that action at this time.
0 commit comments