Run Cypress tests in parallel again (#3537)

This commit is contained in:
Jon Koops 2022-10-10 14:04:50 +02:00 committed by GitHub
parent 7f0b9edcf0
commit 6ccbdad3f2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -14,6 +14,9 @@ on:
keycloakBranch:
description: The branch to check out for the Keycloak repo (e.g. main).
required: false
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
build-keycloak:
if: ${{ github.event_name != 'schedule' }}
@ -81,6 +84,10 @@ jobs:
needs: [build-keycloak, install-nightly]
if: always() && ( needs.build-keycloak.result == 'success' || needs.install-nightly.result == 'success' )
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
containers: [1, 2, 3, 4, 5]
steps:
- name: Check out Admin UI
uses: actions/checkout@v3
@ -113,6 +120,7 @@ jobs:
with:
install: false
record: true
parallel: true
browser: chrome
wait-on: http://localhost:8080
working-directory: apps/admin-ui