Skip to content

Commit

Permalink
install deps for clients on circleci
Browse files Browse the repository at this point in the history
  • Loading branch information
sdbondi committed Sep 28, 2022
1 parent 5fd2365 commit c1dd6de
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ commands:
command: node -v
- run:
name: npm ci
command: cd integration_tests && npm ci
command: cd clients/nodejs/base_node_grpc_client && npm ci && cd ../wallet_grpc_client && npm ci && cd ../../../integration_tests && npm ci
- run:
name: Check formatting
command: cd integration_tests && npm run check-fmt
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,10 +132,12 @@ jobs:
npm install
npm run check-fmt
npm run lint
cd ../clients/nodejs/base_node_grpc_client
npm ci
cd ../clients/base_node_grpc_client
npm install
cd ../wallet_grpc_client
npm install
npm ci
- name: Run ${{ env.CI_PROFILE }} integration tests for binaries
if: ${{ env.CI_BINS == 'true' }}
Expand Down

0 comments on commit c1dd6de

Please sign in to comment.