From b8efb09b8812753e650eeb900bb3336e0e50010e Mon Sep 17 00:00:00 2001 From: Turadg Aleahmad Date: Wed, 23 Feb 2022 06:39:48 -0800 Subject: [PATCH] chore(root): no-bail when testing/linting whole repo --- package.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 35ac2a515b8..5eeabc462b7 100644 --- a/package.json +++ b/package.json @@ -47,13 +47,13 @@ "create-agoric-cli": "node ./scripts/create-agoric-cli.cjs", "format": "yarn prettier --write .github golang packages", "lint:format": "yarn prettier --check .github golang packages", - "lint-fix": "yarn workspaces run lint-fix", + "lint-fix": "yarn lerna run --no-bail lint-fix", "lint": "run-s --continue-on-error lint:*", - "lint:packages": "yarn workspaces run lint", - "test": "yarn workspaces run test", + "lint:packages": "yarn lerna run --no-bail lint", + "test": "yarn lerna run --no-bail test", "test:c8-all": "rm -rf coverage/tmp && C8_OPTIONS=\"--clean=false --temp-directory=$PWD/coverage/tmp\" lerna run test:c8", "test:xs": "yarn workspaces run test:xs", - "build": "yarn workspaces run build", + "build": "yarn lerna run build", "postinstall": "patch-package", "build-xs-worker": "cd packages/xs-vat-worker && yarn build:xs-lin" },