2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-12 21:10:47 +08:00

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

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