From 970eddcd500331cc9f241b34fd2dfb03198a77f2 Mon Sep 17 00:00:00 2001 From: Jen Jones Arnesen Date: Tue, 24 Oct 2023 14:07:09 +0200 Subject: [PATCH] chore: disable the e2e tests since v36 is no longer supported [v36] (#2791) * chore: disable the e2e tests since v36 is no longer supported --- .github/workflows/verify.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml index 3df80cbfa..9f3cca800 100644 --- a/.github/workflows/verify.yml +++ b/.github/workflows/verify.yml @@ -101,10 +101,11 @@ jobs: - name: Test run: yarn test + # v36 is no longer supported, so set the if condition to false to skip this job e2e: runs-on: ubuntu-latest needs: install - if: "!contains(github.event.head_commit.message, '[skip ci]')" + if: false strategy: matrix: @@ -152,7 +153,7 @@ jobs: publish: runs-on: ubuntu-latest - needs: [build, lint, test, e2e] + needs: [build, lint, test] if: "!contains(github.event.head_commit.message, '[skip ci]')" steps: - uses: actions/checkout@v2