From b4fa7c6c06f23d932926b5db0cbe85e78824b13e Mon Sep 17 00:00:00 2001 From: Simon Lamon <32477463+silamon@users.noreply.github.com> Date: Sat, 4 Nov 2023 14:35:36 +0100 Subject: [PATCH] Remove unit tests with Node 16 --- .github/workflows/ci.yml | 34 ---------------------------------- 1 file changed, 34 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0a64b6a7cc..ffaf853f63 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -148,40 +148,6 @@ jobs: - name: Unit tests run: yarn test-unit --forbid-only - test-unit: - needs: build - timeout-minutes: 20 - strategy: - matrix: - node-version: [16] - runs-on: [ubuntu, macos, windows] - runs-on: ${{ matrix.runs-on }}-latest - steps: - - uses: actions/checkout@v3 - - name: Use Node.js ${{ matrix.node-version }}.x - uses: actions/setup-node@v3 - with: - node-version: ${{ matrix.node-version }}.x - cache: 'yarn' - - name: Install dependencies - run: | - yarn --frozen-lockfile - yarn install-addons - - uses: actions/download-artifact@v3 - with: - name: build-artifacts - - name: Unzip artifacts - shell: bash - run: | - if [ "$RUNNER_OS" == "Windows" ]; then - pwsh -Command "7z x compressed-build.zip -aoa -o${{ github.workspace }}" - else - unzip -o compressed-build.zip - fi - ls -R - - name: Unit tests - run: yarn test-unit --forbid-only - test-api-parallel: timeout-minutes: 20 strategy: