From ff8347b52af9ddd91973286e4d3f218b3a48669f Mon Sep 17 00:00:00 2001 From: MapleLeaf <19603573+itsMapleLeaf@users.noreply.github.com> Date: Tue, 11 Jan 2022 00:11:20 -0600 Subject: [PATCH] try just running parallel test --- .github/workflows/main.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 489911f..3fec103 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -11,16 +11,17 @@ env: TEST_GUILD_ID: ${{ secrets.TEST_GUILD_ID }} jobs: - run-scripts: + run-commands: strategy: matrix: - script: - - -C packages/docs test + command: + - name: test + run: pnpm test --parallel --color # - lint # - typecheck # - build fail-fast: false - name: ${{ matrix.script }} + name: ${{ matrix.command.name }} runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 @@ -30,4 +31,4 @@ jobs: node-version: "16" - run: npm i -g pnpm - run: pnpm install --frozen-lockfile - - run: pnpm run ${{ matrix.script }} + - run: ${{ matrix.command.run }}