From 4f0fe241dd9585c29fc0370f34b191f09fcad655 Mon Sep 17 00:00:00 2001 From: Nemanja Glumac <31325167+nemanjaglumac@users.noreply.github.com> Date: Wed, 15 Jun 2022 14:37:43 +0200 Subject: [PATCH] Run Percy (visual regression) sanity check on PRs using GHA (#23334) * Run Percy (visual regression) sanity check on PRs using GHA * Run visual tests only once * Run Percy as an individual job * Fix whitespace error * Update name of the job --- .github/workflows/e2e-tests.yml | 46 ++++++++++++++++++++++++++++++++- 1 file changed, 45 insertions(+), 1 deletion(-) diff --git a/.github/workflows/e2e-tests.yml b/.github/workflows/e2e-tests.yml index ff44e94d3a8..8ea45990466 100644 --- a/.github/workflows/e2e-tests.yml +++ b/.github/workflows/e2e-tests.yml @@ -115,7 +115,7 @@ jobs: with: java-version: ${{ matrix.java-version }} distribution: 'temurin' - - name: Prepare cypress environment + - name: Prepare Cypress environment uses: ./.github/actions/prepare-cypress - name: Run Snowplow micro uses: ./.github/actions/run-snowplow-micro @@ -153,3 +153,47 @@ jobs: ./cypress ./logs/test.log if-no-files-found: ignore + + visual-regression-tests: + runs-on: ubuntu-20.04 + timeout-minutes: 30 + needs: build + name: percy-tests-sanity-check-${{ matrix.edition }} + env: + MB_EDITION: ${{ matrix.edition }} + ENTERPRISE_TOKEN: ${{ secrets.ENTERPRISE_TOKEN }} + strategy: + matrix: + java-version: [11] + edition: [ee] + services: + maildev: + image: maildev/maildev:1.1.0 + ports: + - "80:80" + - "25:25" + credentials: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + steps: + - uses: actions/checkout@v3 + - name: Prepare front-end environment + uses: ./.github/actions/prepare-frontend + - name: Prepare JDK ${{ matrix.java-version }} + uses: actions/setup-java@v3 + with: + java-version: ${{ matrix.java-version }} + distribution: 'temurin' + - name: Prepare Cypress environment + uses: ./.github/actions/prepare-cypress + + - uses: actions/download-artifact@v2 + name: Retrieve uberjar artifact for ${{ matrix.edition }} + with: + name: metabase-${{ matrix.edition }}-uberjar + - name: Get the version info + run: | + jar xf target/uberjar/metabase.jar version.properties + mv version.properties resources/ + - name: Percy Test + run: yarn run test-visual-run -- GitLab