Files
triggerdotdev--trigger.dev/turbo.json
T
Wesley 4ca9f182d7 test/TRI 887/setup jest on cli package (#326)
* chore: run `pnpm install --prefer-frozen-lockfile`

* chore: install `jest` and `ts-jest`

* test: create `jest.config.js`

* chore: install `@types/jest`

* chore: add `jest` on `tsconfig.json` `types` property

* chore: create test script

* test: create example test 🎉🎊🕺🏼

* chore: install `@gmrchk/cli-testing-library`

* chore: override `tsconfig` with `@trigger.dev/tsconfig`

* test: make poc of cli test

* chore: run build before test

* docs: improve comment

* Added a changeset

---------

Co-authored-by: Matt Aitken <matt@mattaitken.com>
2023-08-16 22:35:23 +01:00

104 lines
2.0 KiB
JSON

{
"$schema": "https://turborepo.org/schema.json",
"pipeline": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", "public/build/**", "build/**", "app/styles/tailwind.css", ".cache"]
},
"build:db:seed": {
"outputs": ["prisma/seed.js"]
},
"webapp#start": {
"dependsOn": ["^build"],
"outputs": ["public/build/**"]
},
"start": {
"dependsOn": ["^build"],
"outputs": ["public/build/**"]
},
"db:generate": {
"cache": false
},
"db:migrate:deploy": {
"cache": false
},
"db:seed": {
"cache": false,
"dependsOn": ["build:db:seed"]
},
"db:studio": {
"cache": false
},
"dev": {
"cache": false
},
"i:dev": {
"cache": false
},
"generate": {
"dependsOn": ["^generate"]
},
"lint": {
"outputs": []
},
"docker:build": {
"outputs": [],
"cache": false
},
"test": {
"dependsOn": ["^build"],
"outputs": []
},
"test:dev": {
"outputs": [],
"cache": false
},
"test:e2e:dev": {
"dependsOn": ["^build"],
"outputs": [],
"cache": false
},
"test:e2e:ci": {
"dependsOn": ["^build"],
"outputs": []
},
"typecheck": {
"dependsOn": ["^build"],
"outputs": []
},
"clean": {
"cache": false
},
"clean:sourcemaps": {
"cache": false
},
"storybook": {
"cache": false
}
},
"globalDependencies": [".env"],
"globalEnv": [
"NODE_ENV",
"REMIX_APP_PORT",
"CI",
"DATABASE_URL",
"DIRECT_URL",
"SESSION_SECRET",
"APP_ORIGIN",
"LOGIN_ORIGIN",
"POSTHOG_PROJECT_KEY",
"MAGIC_LINK_SECRET",
"AUTH_GITHUB_CLIENT_ID",
"AUTH_GITHUB_CLIENT_SECRET",
"FROM_EMAIL",
"REPLY_TO_EMAIL",
"RESEND_API_KEY",
"DEBUG",
"TRIGGER_LOG_LEVEL",
"TRIGGER_API_KEY",
"TRIGGER_API_URL",
"APP_ENV",
"APP_LOG_LEVEL"
]
}