From 20d8862def666b02cc8f5e0c8b03642fff952ab3 Mon Sep 17 00:00:00 2001 From: MapleLeaf <19603573+itsMapleLeaf@users.noreply.github.com> Date: Wed, 22 Dec 2021 21:40:05 -0600 Subject: [PATCH] ci: remove build from all jobs, run build standalone --- .github/workflows/the.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/the.yml b/.github/workflows/the.yml index 7d04844..5433a8c 100644 --- a/.github/workflows/the.yml +++ b/.github/workflows/the.yml @@ -16,7 +16,7 @@ jobs: ci: strategy: matrix: - script-name: [coverage, lint, typecheck] + script-name: [coverage, lint, typecheck, build] fail-fast: false name: ${{ matrix.script-name }} runs-on: ubuntu-latest @@ -28,5 +28,4 @@ jobs: node-version: "lts/*" - run: npm i -g pnpm - run: pnpm install --frozen-lockfile - - run: pnpm run build - run: pnpm run ${{ matrix.script-name }}