Skip to content

Commit

Permalink
ci(vats): reduce yarn test concurrency to 2
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelfig committed May 4, 2023
1 parent 55599df commit 884fa3b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions packages/vats/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
"prepack": "tsc --build jsconfig.build.json",
"postpack": "git clean -f '*.d.ts*'",
"test": "ava",
"test:c8": "c8 $C8_OPTIONS ava --config=ava-nesm.config.js",
"test:xs": "SWINGSET_WORKER_TYPE=xs-worker ava -c 2 'test/bootstrapTests/**/test-*.js' 'test/upgrading/**/test-*.js'",
"test:c8": "c8 $C8_OPTIONS ava",
"test:xs": "SWINGSET_WORKER_TYPE=xs-worker ava 'test/bootstrapTests/**/test-*.js' 'test/upgrading/**/test-*.js'",
"lint-fix": "yarn lint:eslint --fix",
"lint": "run-s --continue-on-error lint:*",
"lint:types": "tsc -p jsconfig.json",
Expand Down Expand Up @@ -77,6 +77,7 @@
"files": [
"test/**/test-*.js"
],
"concurrency": 2,
"timeout": "20m",
"workerThreads": false
}
Expand Down

0 comments on commit 884fa3b

Please sign in to comment.