Skip to content

Commit

Permalink
Merge 1b26af9 into cb0fcbe
Browse files Browse the repository at this point in the history
  • Loading branch information
sripwoud committed Dec 19, 2022
2 parents cb0fcbe + 1b26af9 commit d0f6b53
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/coveralls.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,12 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: build
args: --release --manifest-path circom/Cargo.toml
args: --release --manifest-path circom/Cargo.toml --quiet
- name: Install circom
uses: actions-rs/cargo@v1
with:
command: install
args: --path circom/circom
args: --path circom/circom --quiet

- name: Install node deps
run: pnpm i --ignore-scripts --reporter=silent
Expand Down
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@
"format": "prettier -w .",
"lint": "eslint . --ext .js,.ts --fix",
"test.watch": "jest --watch",
"test": "lerna run test",
"test": "is-ci-cli test.ci test.local",
"test.ci": "lerna run test -- --silent --reporters=jest-silent-reporter",
"test.local": "lerna run test",
"validate.ci": "concurrently tsc 'tsc -p apis/query/tsconfig.json' 'jest --selectProjects prettier lint --silent --reporters=jest-silent-reporter --coverage false'",
"validate.local": "concurrently tsc 'tsc -p apis/query/tsconfig.json' 'tsc -p circuits/circom/tsconfig.json' jest",
"validate": "is-ci-cli validate.ci validate.local"
Expand Down

0 comments on commit d0f6b53

Please sign in to comment.