From e504bee0dd43fbc85fa727d78ad35fe68055c9f1 Mon Sep 17 00:00:00 2001 From: Rinish Sam <36656347+CaptainIRS@users.noreply.github.com> Date: Mon, 17 Oct 2022 14:19:41 +0530 Subject: [PATCH] Revert "Add Node 18 to CI (#1455)" (#1460) This reverts commit 85cf0735538b08b74a2034ac598a68106d6dc82b. Signed-off-by: CaptainIRS <36656347+CaptainIRS@users.noreply.github.com> Signed-off-by: CaptainIRS <36656347+CaptainIRS@users.noreply.github.com> --- .github/workflows/integration-tests.yml | 2 +- .github/workflows/publish.yml | 4 ++-- .github/workflows/unit-tests.yml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index b4cce8aad..c7beade2f 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -58,7 +58,7 @@ jobs: fail-fast: false matrix: adaptor: ${{ fromJSON(needs.changes.outputs.adaptor) }} - node-version: [14.x, 16.x, 18.x] + node-version: [14.x, 16.x] steps: - uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node-version }} diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index f24dd217f..957d47b9f 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -9,10 +9,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - name: Use Node.js 18.x + - name: Use Node.js 16.x uses: actions/setup-node@v3 with: - node-version: 18.x + node-version: 16.x - name: Publish Caliper run: .build/publish-caliper.sh env: diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index ef8274c32..81cd0dfdf 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [14.x, 16.x, 18.x] + node-version: [14.x, 16.x] steps: - uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node-version }} @@ -41,7 +41,7 @@ jobs: - name: Run unit tests run: npm test --workspaces - name: Upload coverage reports artifact - if: matrix.node-version == '18.x' + if: matrix.node-version == '16.x' uses: actions/upload-artifact@v3 with: name: coverage-reports