From c9ac88bf29701844dd6460a04357fa90291bcf35 Mon Sep 17 00:00:00 2001 From: CaptainIRS <36656347+CaptainIRS@users.noreply.github.com> Date: Thu, 21 Jul 2022 21:33:19 +0530 Subject: [PATCH] Address review comments * Fix npm version in GitHub Actions Signed-off-by: CaptainIRS <36656347+CaptainIRS@users.noreply.github.com> --- .github/workflows/integration-tests.yml | 20 ++++++++++---------- .github/workflows/unit-tests.yml | 4 ++-- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index f507e8a4c..6f40d8b13 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -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: @@ -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: @@ -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: @@ -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: @@ -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: diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index 93eda9568..cc75f2237 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -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