From effd16ed97fb35ba84afd6a3e4ee7f67fb395f76 Mon Sep 17 00:00:00 2001 From: MapleLeaf <19603573+itsMapleLeaf@users.noreply.github.com> Date: Tue, 11 Jan 2022 00:21:57 -0600 Subject: [PATCH] run reacord and docs test in separate processes --- .github/workflows/main.yml | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1a60e7e..8191584 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -16,12 +16,18 @@ jobs: fail-fast: false matrix: command: - - name: test + # if these run in the same process, it dies, + # so we test them separate + - name: test reacord run: pnpm test -C packages/reacord - # run: pnpm test --parallel --color - # - lint - # - typecheck - # - build + - name: test docs + run: pnpm test -C packages/docs + - name: build + run: pnpm build --recursive + - name: lint + run: pnpm lint + - name: typecheck + run: pnpm typecheck --parallel name: ${{ matrix.command.name }} runs-on: ubuntu-latest steps: