Skip to content
This repository has been archived by the owner on Nov 28, 2022. It is now read-only.

Commit

Permalink
Attempt to fix CI timeouts
Browse files Browse the repository at this point in the history
  • Loading branch information
domharrington committed Oct 23, 2018
1 parent 0dd486a commit 0da2e08
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "Open source components that make up ReadMe's API explorer",
"version": "0.0.0",
"scripts": {
"test": "node scripts/update-example-swagger-files && eslint -f unix example --ext js --ext jsx && lerna run test --stream --concurrency 2",
"test": "node scripts/update-example-swagger-files && eslint -f unix example --ext js --ext jsx && lerna run test --stream",
"start": "node scripts/update-example-swagger-files && webpack-dev-server",
"build": "./build.sh & lerna run build",
"watch": "lerna run watch --stream",
Expand Down
2 changes: 1 addition & 1 deletion packages/api-explorer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"inspect": "jsinspect",
"prettier": "prettier --list-different \"./**/**.{js,jsx}\"",
"pretest": "npm run lint && npm run inspect && npm run prettier",
"test": "jest --coverage",
"test": "jest --coverage --runInBand",
"watch": "webpack -w",
"build": "webpack --config webpack.prod.js"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/api-logs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"inspect": "jsinspect",
"prettier": "prettier --list-different \"./**/**.{js,jsx}\"",
"pretest": "npm run lint && npm run inspect && npm run prettier",
"test": "jest --coverage",
"test": "jest --coverage --runInBand",
"watch": "webpack -w",
"build": "webpack --config webpack.prod.js"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/markdown/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"inspect": "jsinspect",
"prettier": "prettier --list-different \"./**/**.{js,jsx}\"",
"pretest": "npm run lint && npm run inspect && npm run prettier",
"test": "jest --coverage"
"test": "jest --coverage --runInBand"
},
"publishConfig": {
"registry": "http://registry.npmjs.org",
Expand Down
2 changes: 1 addition & 1 deletion packages/syntax-highlighter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"inspect": "jsinspect",
"prettier": "prettier --list-different \"./**/**.{js,jsx}\"",
"pretest": "npm run lint && npm run inspect && npm run prettier",
"test": "jest --coverage"
"test": "jest --coverage --runInBand"
},
"publishConfig": {
"registry": "http://registry.npmjs.org",
Expand Down
2 changes: 1 addition & 1 deletion packages/variable/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"inspect": "jsinspect",
"prettier": "prettier --list-different \"./**/**.{js,jsx}\"",
"pretest": "npm run lint && npm run inspect && npm run prettier",
"test": "jest --coverage"
"test": "jest --coverage --runInBand"
},
"publishConfig": {
"registry": "http://registry.npmjs.org",
Expand Down

0 comments on commit 0da2e08

Please sign in to comment.