Skip to content

Commit

Permalink
Address review comments
Browse files Browse the repository at this point in the history
* Fix npm version in GitHub Actions

Signed-off-by: CaptainIRS <[email protected]>
  • Loading branch information
CaptainIRS committed Jul 21, 2022
1 parent 3b0e9c0 commit c9ac88b
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install latest NPM
run: npm install -g npm@latest
- name: Install higher version of NPM
run: npm install -g npm@8.15.0
- name: Fabric Integration Test
run: .build/benchmark-integration-test-direct.sh
env:
Expand All @@ -35,8 +35,8 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install latest NPM
run: npm install -g npm@latest
- name: Install higher version of NPM
run: npm install -g npm@8.15.0
- name: Ethereum Integration Test
run: .build/benchmark-integration-test-direct.sh
env:
Expand All @@ -54,8 +54,8 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install latest NPM
run: npm install -g npm@latest
- name: Install higher version of NPM
run: npm install -g npm@8.15.0
- name: Besu Integration Test
run: .build/benchmark-integration-test-direct.sh
env:
Expand All @@ -73,8 +73,8 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install latest NPM
run: npm install -g npm@latest
- name: Install higher version of NPM
run: npm install -g npm@8.15.0
- name: FISCO BCOS Integration Test
run: .build/benchmark-integration-test-direct.sh
env:
Expand All @@ -92,8 +92,8 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install latest NPM
run: npm install -g npm@latest
- name: Install higher version of NPM
run: npm install -g npm@8.15.0
- name: Generator Integration Test
run: .build/benchmark-integration-test-direct.sh
env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install latest NPM
run: npm install -g npm@latest
- name: Install higher version of NPM
run: npm install -g npm@8.15.0
- name: Check correct usage of Caliper package names
run: ./scripts/check-package-names.sh
- name: Install project dependencies
Expand Down

0 comments on commit c9ac88b

Please sign in to comment.