From 710fa65d6b6b514b8a2939cdeabc64af5bbc2217 Mon Sep 17 00:00:00 2001 From: Luca Forstner Date: Wed, 16 Aug 2023 13:31:26 +0200 Subject: [PATCH] Don't run e2e tests --- .github/workflows/checks.yml | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 9bceb3de..e9f90265 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -72,23 +72,6 @@ jobs: - run: yarn --frozen-lockfile --ignore-engines - run: yarn test:integration - test-e2e: - # We only run E2E tests for non-fork PRs because the E2E tests require secrets to work and they can't be accessed from forks - # Dependabot PRs sadly also don't have access to secrets, so we skip them as well - if: - (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository) && - github.actor != 'dependabot[bot]' - needs: build - name: E2E Tests - runs-on: ubuntu-latest - env: - SENTRY_AUTH_TOKEN: ${{ secrets.E2E_TESTS_SENTRY_AUTH_TOKEN }} - steps: - - uses: actions/checkout@v3 - - uses: volta-cli/action@v3 - - run: yarn --frozen-lockfile - - run: yarn test:e2e - lint: needs: build name: Linter check