From f41d8aee30108fd1214b812c65fdcac864716b0d 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..47b6d594310 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', 'js-from-ts', '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)