File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 38
38
run : pnpm run generate
39
39
40
40
- name : 🧪 Run Webapp Unit Tests
41
- run : pnpm run test --filter webapp
41
+ run : pnpm run test: webapp
42
42
env :
43
43
DATABASE_URL : postgresql://postgres:postgres@localhost:5432/postgres
44
44
DIRECT_URL : postgresql://postgres:postgres@localhost:5432/postgres
47
47
ENCRYPTION_KEY : " secret"
48
48
49
49
- name : 🧪 Run Package Unit Tests
50
- run : pnpm run test --filter "@trigger.dev/*"
50
+ run : pnpm run test:packages
51
51
52
52
- name : 🧪 Run Internal Unit Tests
53
- run : pnpm run test --filter "@ internal/*"
53
+ run : pnpm run test: internal
Original file line number Diff line number Diff line change 26
26
"dev:docker:build" : " docker-compose -p triggerdotdev-dev-docker -f docker/dev-compose.yml up -d --build" ,
27
27
"dev:docker:stop" : " docker-compose -p triggerdotdev-dev-docker -f docker/dev-compose.yml stop" ,
28
28
"test" : " turbo run test --concurrency=1 -- --run" ,
29
+ "test:webapp" : " turbo run test --filter webapp -- --run" ,
30
+ "test:packages" : " turbo run test --concurrency=1 --filter \" @trigger.dev/*\" -- --run" ,
31
+ "test:internal" : " turbo run test --concurrency=1 --filter \" @internal/*\" -- --run" ,
29
32
"test:dev" : " turbo run test:dev" ,
30
33
"start" : " turbo run start" ,
31
34
"check-exports" : " turbo run check-exports" ,
You can’t perform that action at this time.
0 commit comments