diff --git a/package.json b/package.json index 01f6820..88a6a0c 100644 --- a/package.json +++ b/package.json @@ -4,6 +4,7 @@ "build": "turbo run build", "dev": "turbo run dev", "lint": "turbo run lint", + "test": "turbo run test", "format": "prettier --write \"**/*.{ts,tsx,js,jsx,md,css,scss}\"" }, "devDependencies": { diff --git a/turbo.json b/turbo.json index ec4d016..7f7738c 100644 --- a/turbo.json +++ b/turbo.json @@ -1,15 +1,16 @@ { - "$schema": "https://turbo.build/schema.json", - "globalDependencies": ["**/.env.*local"], - "pipeline": { - "build": { - "dependsOn": ["^build"], - "outputs": [".next/**", "!.next/cache/**"] - }, - "lint": {}, - "dev": { - "cache": false, - "persistent": true - } - } + "$schema": "https://turbo.build/schema.json", + "globalDependencies": ["**/.env.*local"], + "pipeline": { + "build": { + "dependsOn": ["^build"], + "outputs": [".next/**", "!.next/cache/**"] + }, + "lint": {}, + "test": {}, + "dev": { + "cache": false, + "persistent": true + } + } }