From 365b38464323763942db182e451d3684e3aa22a7 Mon Sep 17 00:00:00 2001 From: Divyansh Singh <40380293+brc-dd@users.noreply.github.com> Date: Sat, 11 Nov 2023 22:09:16 +0530 Subject: [PATCH] bypass other scripts for moment --- .github/workflows/test.yml | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index fdb5196886d1..2b85ac6de46f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -55,4 +55,4 @@ jobs: brew config - name: Check - run: DEBUG='*' pnpm check + run: DEBUG='vite*' pnpm check diff --git a/package.json b/package.json index 891eef84fa3f..f7386dbca3ba 100644 --- a/package.json +++ b/package.json @@ -64,7 +64,7 @@ "build:prepare": "rimraf dist && node scripts/copyShared", "build:client": "vue-tsc --noEmit -p src/client && tsc -p src/client && node scripts/copyClient", "build:node": "tsc -p src/node --noEmit && rollup --config rollup.config.ts --configPlugin esbuild", - "test": "run-p --aggregate-output test:unit test:e2e test:init", + "test": "test:e2e", "test:unit": "vitest run -r __tests__/unit", "test:unit:watch": "vitest -r __tests__/unit", "test:e2e": "run-s test:e2e-dev test:e2e-build",