From 11734b96b8e53abbe0ae66f9f3e57411a4e735b7 Mon Sep 17 00:00:00 2001 From: robonen Date: Mon, 30 Sep 2024 06:55:47 +0700 Subject: [PATCH] chore(repo): add build all script, update ci tests --- .github/workflows/ci.yaml | 2 +- package.json | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 49cfa64..791c5d8 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -26,4 +26,4 @@ jobs: run: pnpm install --frozen-lockfile - name: Test - run: pnpm run all:test \ No newline at end of file + run: pnpm run all:build && pnpm run all:test \ No newline at end of file diff --git a/package.json b/package.json index 098ff94..7bd97d0 100644 --- a/package.json +++ b/package.json @@ -29,6 +29,7 @@ "vitepress": "^1.3.4" }, "scripts": { + "all:build": "pnpm -r build", "all:test": "pnpm -r test", "create": "jiti ./cli.ts", "docs:dev": "vitepress dev .",