DEV: Use actions matrix to parallelize ember cli tests (#14323)

This commit is contained in:
Rafael dos Santos Silva 2021-09-13 14:59:56 -03:00 committed by GitHub
parent 928f000b4b
commit 6584982531
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 1 deletions

View File

@ -15,6 +15,11 @@ jobs:
container: discourse/discourse_test:release
timeout-minutes: 60
strategy:
fail-fast: false
matrix:
browser: ["Chrome", "Firefox", "Headless Firefox"]
steps:
- uses: actions/checkout@master
with:
@ -54,5 +59,5 @@ jobs:
- name: Core QUnit
working-directory: ./app/assets/javascripts/discourse
run: sudo -E -u discourse -H yarn ember test
run: sudo -E -u discourse -H yarn ember test --launch "${{ matrix.browser }}"
timeout-minutes: 60