From 8482f6e91aaa56fb8ada7de3f7d48caec163934d Mon Sep 17 00:00:00 2001 From: MapleLeaf <19603573+itsMapleLeaf@users.noreply.github.com> Date: Mon, 10 Jan 2022 23:57:23 -0600 Subject: [PATCH] simplify workflow again --- .github/workflows/main.yml | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 302ccd4..b16a324 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -14,17 +14,9 @@ jobs: run-scripts: strategy: matrix: - scripts: - - name: test - script: test - - name: lint - script: lint - - name: typecheck - script: typecheck - - name: build - script: build + script: [test, lint, typecheck, build] fail-fast: false - name: ${{ matrix.scripts.name }} + name: ${{ matrix.script }} runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 @@ -34,4 +26,4 @@ jobs: node-version: "16" - run: npm i -g pnpm - run: pnpm install --frozen-lockfile - - run: pnpm run --recursive --parallel ${{ matrix.scripts.script }} + - run: pnpm run --recursive --parallel ${{ matrix.script }}