diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b61c4b3..c5ff337 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -35,7 +35,5 @@ jobs: run: pnpm format - name: Run build run: pnpm build - - name: Run test:typecheck - run: CI=true pnpm test:typecheck - name: Run test run: CI=true pnpm test diff --git a/package.json b/package.json index d61f4b5..af72b98 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,6 @@ "description": "Apibara Typescript monorepo", "scripts": { "build": "turbo run build --parallel", - "test:typecheck": "turbo run test:typecheck", "test": "turbo run test", "lint": "turbo run lint --parallel", "lint:fix": "turbo run lint:fix --parallel", diff --git a/packages/indexer/package.json b/packages/indexer/package.json index 29e62bb..8f252fe 100644 --- a/packages/indexer/package.json +++ b/packages/indexer/package.json @@ -34,8 +34,6 @@ }, "scripts": { "build": "unbuild", - "test": "vitest", - "test:typecheck": "vitest typecheck", "lint": "biome check .", "lint:fix": "pnpm lint --write", "format": "biome format . --write" diff --git a/turbo.json b/turbo.json index 61dc447..c02f689 100644 --- a/turbo.json +++ b/turbo.json @@ -7,11 +7,6 @@ ], "outputs": ["dist/**"] }, - "test:typecheck": { - "dependsOn": [ - "build" - ] - }, "test": { "dependsOn": [ "build"