@budibase/worker 2.10.12-alpha.21 → 2.10.12-alpha.23

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +6 -6
  2. package/scripts/test.sh +3 -3
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@budibase/worker",
3
3
  "email": "hi@budibase.com",
4
- "version": "2.10.12-alpha.21",
4
+ "version": "2.10.12-alpha.23",
5
5
  "description": "Budibase background service",
6
6
  "main": "src/index.ts",
7
7
  "repository": {
@@ -38,10 +38,10 @@
38
38
  "author": "Budibase",
39
39
  "license": "GPL-3.0",
40
40
  "dependencies": {
41
- "@budibase/backend-core": "2.10.12-alpha.21",
42
- "@budibase/pro": "2.10.12-alpha.21",
43
- "@budibase/string-templates": "2.10.12-alpha.21",
44
- "@budibase/types": "2.10.12-alpha.21",
41
+ "@budibase/backend-core": "2.10.12-alpha.23",
42
+ "@budibase/pro": "2.10.12-alpha.23",
43
+ "@budibase/string-templates": "2.10.12-alpha.23",
44
+ "@budibase/types": "2.10.12-alpha.23",
45
45
  "@koa/router": "8.0.8",
46
46
  "@sentry/node": "6.17.7",
47
47
  "@techpass/passport-openidconnect": "0.3.2",
@@ -117,5 +117,5 @@
117
117
  }
118
118
  }
119
119
  },
120
- "gitHead": "18c7518bc4deb7a9d1abc66046844a742468952b"
120
+ "gitHead": "9bd4215d59684f90c99cf351dbf3796f366e1d4f"
121
121
  }
package/scripts/test.sh CHANGED
@@ -3,9 +3,9 @@ set -e
3
3
 
4
4
  if [[ -n $CI ]]
5
5
  then
6
- # --runInBand performs better in ci where resources are limited
7
- echo "jest --coverage --runInBand --forceExit --bail"
8
- jest --coverage --runInBand --forceExit --bail
6
+ # Running in ci, where resources are limited
7
+ echo "jest --coverage --maxWorkers=2 --forceExit --bail"
8
+ jest --coverage --maxWorkers=2 --forceExit --bail
9
9
  else
10
10
  # --maxWorkers performs better in development
11
11
  echo "jest --coverage --maxWorkers=2 --forceExit"