Skip to content

Commit

Permalink
chore(root): no-bail when testing/linting whole repo
Browse files Browse the repository at this point in the history
  • Loading branch information
turadg committed Feb 24, 2022
1 parent 85dc905 commit b8efb09
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Expand Up @@ -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"
},
Expand Down

0 comments on commit b8efb09

Please sign in to comment.