Skip to content

Commit bef688b

Browse files
author
Josh Goldberg
authored
Limited Jest workers to 2 (#313)
* Limited Jest workers to 2 * Whoops, also config.yml * Ugh and a colon
1 parent 42b1821 commit bef688b

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ jobs:
9191
- attach_workspace:
9292
at: "."
9393

94-
- run: npm run test -- --coverage
94+
- run: npm run test:ci
9595

9696
tsc:
9797
docker:

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@
6161
"prettier": "prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore",
6262
"prettier:write": "npm run prettier -- --write",
6363
"test": "jest",
64+
"test:ci": "jest --coverage --maxWorkers=2",
6465
"tsc": "tsc"
6566
},
6667
"version": "0.5.0"

0 commit comments

Comments
 (0)