diff --git a/.github/workflows/tests-2.yml b/.github/workflows/tests-2.yml index 5e8a58aba5..0e1ff986f9 100644 --- a/.github/workflows/tests-2.yml +++ b/.github/workflows/tests-2.yml @@ -36,7 +36,7 @@ jobs: fail-fast: false matrix: # Run multiple instances in parallel to speed up the tests - runner: [1, 2] + runner: [1, 2, 3, 4, 5, 6] steps: - name: Checkout code uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5 @@ -75,18 +75,6 @@ jobs: # tell jest to use coloured output FORCE_COLOR: true - - name: Move coverage files into place - if: env.ENABLE_COVERAGE == 'true' - run: mv coverage/lcov.info coverage/${{ steps.setupNode.outputs.node-version }}-${{ matrix.runner }}.lcov.info - - - name: Upload Artifact - if: env.ENABLE_COVERAGE == 'true' - uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5 - with: - name: coverage-${{ matrix.runner }} - path: | - coverage - !coverage/lcov-report complete: name: jest-tests