From ee1acd1b3bf6cfc58421400b8de33c659ade1505 Mon Sep 17 00:00:00 2001 From: Absolutestunna Date: Sat, 1 Jul 2023 13:24:08 -0400 Subject: [PATCH] 9998 - temp commenting out shared workflow --- .github/workflows/shared.yml | 106 +++++++++++++++++------------------ 1 file changed, 53 insertions(+), 53 deletions(-) diff --git a/.github/workflows/shared.yml b/.github/workflows/shared.yml index 5eb8f4d5463..7c304d7fe1e 100644 --- a/.github/workflows/shared.yml +++ b/.github/workflows/shared.yml @@ -1,55 +1,55 @@ -name: Node.js CI - Shared +# name: Node.js CI - Shared -on: - pull_request: +# on: +# pull_request: -jobs: - Shared: - runs-on: ubuntu-latest - strategy: - fail-fast: false - matrix: - ci_node_total: [4] - ci_node_index: [0, 1, 2, 3] - env: - CI_NODE_TOTAL: ${{ matrix.ci_node_total }} - CI_NODE_INDEX: ${{ matrix.ci_node_index }} - steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 - with: - node-version: '18.15.0' - - name: Collect Workflow Telemetry - uses: runforesight/workflow-telemetry-action@v1 - with: - comment_on_pr: false - - name: Install Node Dependencies - run: npm ci - - name: Shared - run: | - export TESTFILES=$(npx ts-node split-tests-glob.ts -shared) - NODE_INDEX=${{ matrix.ci_node_index }} npm run test:shared:ci - - name: Rename coverage to shard coverage - run: | - mkdir -p coverage - cp shared/coverage/${{ matrix.ci_node_index }}/lcov.info coverage/lcov-${{ matrix.ci_node_index }}.info - cp shared/coverage/${{ matrix.ci_node_index }}/coverage-final.json coverage/coverage-${{ matrix.ci_node_index }}.json - - uses: actions/upload-artifact@v3 - with: - name: coverage-artifacts - path: coverage - check-coverage: - runs-on: ubuntu-latest - needs: [Shared] - steps: - - uses: actions/checkout@v3 - - uses: actions/download-artifact@v3 - with: - name: coverage-artifacts - path: coverage - - name: Process Coverage - run: npx nyc report --check-coverage --branches 96.13 --functions 96.16 --lines 98.34 --statements 98.25 --reporter lcov --reporter text --reporter clover -t coverage - - uses: geekyeggo/delete-artifact@v1 - with: - name: coverage-artifacts - failOnError: false +# jobs: +# Shared: +# runs-on: ubuntu-latest +# strategy: +# fail-fast: false +# matrix: +# ci_node_total: [4] +# ci_node_index: [0, 1, 2, 3] +# env: +# CI_NODE_TOTAL: ${{ matrix.ci_node_total }} +# CI_NODE_INDEX: ${{ matrix.ci_node_index }} +# steps: +# - uses: actions/checkout@v3 +# - uses: actions/setup-node@v3 +# with: +# node-version: '18.15.0' +# - name: Collect Workflow Telemetry +# uses: runforesight/workflow-telemetry-action@v1 +# with: +# comment_on_pr: false +# - name: Install Node Dependencies +# run: npm ci +# - name: Shared +# run: | +# export TESTFILES=$(npx ts-node split-tests-glob.ts -shared) +# NODE_INDEX=${{ matrix.ci_node_index }} npm run test:shared:ci +# - name: Rename coverage to shard coverage +# run: | +# mkdir -p coverage +# cp shared/coverage/${{ matrix.ci_node_index }}/lcov.info coverage/lcov-${{ matrix.ci_node_index }}.info +# cp shared/coverage/${{ matrix.ci_node_index }}/coverage-final.json coverage/coverage-${{ matrix.ci_node_index }}.json +# - uses: actions/upload-artifact@v3 +# with: +# name: coverage-artifacts +# path: coverage +# check-coverage: +# runs-on: ubuntu-latest +# needs: [Shared] +# steps: +# - uses: actions/checkout@v3 +# - uses: actions/download-artifact@v3 +# with: +# name: coverage-artifacts +# path: coverage +# - name: Process Coverage +# run: npx nyc report --check-coverage --branches 96.13 --functions 96.16 --lines 98.34 --statements 98.25 --reporter lcov --reporter text --reporter clover -t coverage +# - uses: geekyeggo/delete-artifact@v1 +# with: +# name: coverage-artifacts +# failOnError: false