diff --git a/.gitea/workflows/lint.yaml b/.gitea/workflows/lint.yaml index c13cd5d..0a3d7b6 100644 --- a/.gitea/workflows/lint.yaml +++ b/.gitea/workflows/lint.yaml @@ -16,3 +16,5 @@ jobs: run: bun lint:tsc - name: Lint Biome run: bun lint:biome + - name: Test + run: bun run test diff --git a/package.json b/package.json index 3005ac9..b50664d 100644 --- a/package.json +++ b/package.json @@ -6,9 +6,10 @@ "./packages/*" ], "scripts": { - "build": "turbo build", "lint:tsc": "turbo lint:tsc", "lint:biome": "turbo lint:biome", + "test": "turbo test", + "build": "turbo build", "pack": "turbo pack", "clean:cache": "turbo clean:cache", "clean:dist": "turbo clean:dist", diff --git a/packages/effect-fc-next/package.json b/packages/effect-fc-next/package.json index 91b4e19..e60d411 100644 --- a/packages/effect-fc-next/package.json +++ b/packages/effect-fc-next/package.json @@ -29,10 +29,10 @@ ] }, "scripts": { - "build": "tsc", "lint:tsc": "tsc --noEmit", "lint:biome": "biome lint", "test": "vitest run", + "build": "tsc", "pack": "npm pack", "clean:cache": "rm -rf .turbo tsconfig.tsbuildinfo", "clean:dist": "rm -rf dist", diff --git a/turbo.json b/turbo.json index 75a43f8..fcbaf52 100644 --- a/turbo.json +++ b/turbo.json @@ -8,6 +8,9 @@ "lint:biome": { "cache": false }, + "test": { + "cache": false + }, "build": { "dependsOn": ["^build"], "inputs": ["./src/**"],