From f8d59f1fda782ed25551d91251e248dd4355bf85 Mon Sep 17 00:00:00 2001 From: Sam Van Campenhout Date: Sat, 5 Oct 2024 15:55:40 +0200 Subject: [PATCH] Run the blueprint tests in parallel in CI --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 035aee74af8..b903ae80409 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -174,11 +174,14 @@ jobs: name: Blueprint Tests runs-on: ubuntu-latest needs: [lint] + strategy: + matrix: + script-name: ['js', 'transpiled-js', 'ts'] steps: - uses: actions/checkout@v4 - uses: ./.github/actions/setup - name: test - run: pnpm test:blueprints + run: pnpm test:blueprints:${{matrix.script-name}} browser-test: name: Browser Tests (Firefox)