File tree Expand file tree Collapse file tree 2 files changed +16
-2
lines changed
Expand file tree Collapse file tree 2 files changed +16
-2
lines changed Original file line number Diff line number Diff line change 3535 - name : Install dependencies
3636 run : yarn install --frozen-lockfile
3737
38- - name : Run unit tests
39- run : yarn test:unit
38+ - name : Run lib unit tests
39+ run : yarn test:lib:unit
40+
41+ - name : Run cli unit tests
42+ run : yarn test:cli:unit
43+
44+ - name : Run server unit tests
45+ run : yarn test:server:unit
46+
47+ - name : Run postgres-server unit tests
48+ run : yarn test:pg-server:unit
4049
4150 - name : Run integration tests
4251 run : yarn test:integration
Original file line number Diff line number Diff line change 1919 "build" : " yarn clean && yarn build:lib && yarn build:cli && yarn build:server && yarn build:pg-server" ,
2020 "build:references" : " tsc --build" ,
2121 "test" : " jest" ,
22+ "test:unit" : " yarn test:lib:unit && yarn test:cli:unit && yarn test:server:unit && yarn test:pg-server:unit" ,
23+ "test:integration" : " jest --testMatch='**/*.integration.test.ts'" ,
2224 "test:lib" : " cd packages/lib && yarn test" ,
2325 "test:lib:unit" : " cd packages/lib && yarn test:unit" ,
2426 "test:lib:integration" : " cd packages/lib && yarn test:integration" ,
2527 "test:cli" : " cd packages/cli && yarn test" ,
28+ "test:cli:unit" : " cd packages/cli && jest tests/" ,
2629 "test:server" : " cd packages/server && yarn test" ,
30+ "test:server:unit" : " cd packages/server && jest tests/" ,
2731 "test:pg-server" : " cd packages/postgres-server && yarn test" ,
32+ "test:pg-server:unit" : " cd packages/postgres-server && jest tests/unit/" ,
2833 "test:all" : " yarn test:lib && yarn test:cli && yarn test:server && yarn test:pg-server" ,
2934 "typecheck" : " cd packages/lib && npx tsc --noEmit && cd ../cli && npx tsc --noEmit && cd ../server && npx tsc --noEmit && cd ../postgres-server && npx tsc --noEmit" ,
3035 "lint" : " eslint --ext .ts packages/*/src" ,
You can’t perform that action at this time.
0 commit comments