From 49d1376647caf73d03121bce6848254a4b5c1e9b Mon Sep 17 00:00:00 2001 From: Felipe Knorr Kuhn <100320+knorrium@users.noreply.github.com> Date: Tue, 17 Aug 2021 15:55:00 -0700 Subject: [PATCH] Update cypress test config --- .github/workflows/cypress.yml | 37 ++++++++++++++++++++++++++++++++--- 1 file changed, 34 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cypress.yml b/.github/workflows/cypress.yml index 2cd892f60..7f19f2895 100644 --- a/.github/workflows/cypress.yml +++ b/.github/workflows/cypress.yml @@ -15,17 +15,48 @@ jobs: steps: - name: Checkout uses: actions/checkout@v2 - - name: ${{ matrix.browser }} browser tests + - name: ${{ matrix.browser }} browser tests (Mempool) uses: cypress-io/github-action@v2 with: working-directory: frontend - build: npm run config:defaults + build: npm run config:defaults:mempool start: npm run start:local-prod wait-on: 'http://localhost:4200' wait-on-timeout: 120 record: true parallel: true - group: Tests on ${{ matrix.browser }} + env: BASE_MODULE=mempool + group: Tests on ${{ matrix.browser }} (Mempool) + browser: ${{ matrix.browser }} + ci-build-id: '${{ github.sha }}-${{ github.workflow }}-${{ github.event_name }}' + - name: ${{ matrix.browser }} browser tests (Liquid) + uses: cypress-io/github-action@v2 + with: + working-directory: frontend + build: npm run config:defaults:liquid + start: npm run start:local-prod + wait-on: 'http://localhost:4200' + wait-on-timeout: 120 + record: true + parallel: true + spec: cypress/integration/liquid/liquid.spec.ts + env: BASE_MODULE=lidquid + group: Tests on ${{ matrix.browser }} (Liquid) + browser: ${{ matrix.browser }} + ci-build-id: '${{ github.sha }}-${{ github.workflow }}-${{ github.event_name }}' + - name: ${{ matrix.browser }} browser tests (Bisq) + uses: cypress-io/github-action@v2 + with: + working-directory: frontend + build: npm run config:defaults:bisq + start: npm run start:local-prod + wait-on: 'http://localhost:4200' + wait-on-timeout: 120 + record: true + parallel: true + spec: cypress/integration/bisq/bisq.spec.ts + env: BASE_MODULE=bisq + group: Tests on ${{ matrix.browser }} (Bisq) browser: ${{ matrix.browser }} ci-build-id: '${{ github.sha }}-${{ github.workflow }}-${{ github.event_name }}' env: