File tree Expand file tree Collapse file tree 4 files changed +6
-5
lines changed Expand file tree Collapse file tree 4 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -254,11 +254,12 @@ jobs:
254254
255255 - name : Run linting for ${{ matrix.service }}
256256 if : steps.changes.outputs.needs_build == 'true'
257- run : yarn turbo run lint --filter=${{ matrix.service }}
257+ run : yarn turbo run lint --filter=${{ matrix.service }} --only
258258
259259 - name : Run tests for ${{ matrix.service }}
260260 if : steps.changes.outputs.needs_build == 'true'
261- run : yarn turbo run test --filter=${{ matrix.service }} -- -- --watchAll=false
261+ run : yarn turbo run test --filter=${{ matrix.service }} --only -- -- --watchAll=false
262+ timeout-minutes : 10
262263
263264 build-and-deploy :
264265 name : Build & Deploy - ${{ matrix.service }}
Original file line number Diff line number Diff line change 1717 "start:debug" : " yarn start --debug --watch" ,
1818 "start:dev" : " yarn start --watch" ,
1919 "start:prod" : " node dist/main" ,
20- "test" : " jest --detectOpenHandles " ,
20+ "test" : " jest" ,
2121 "test:cov" : " jest --coverage" ,
2222 "test:debug" : " node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand" ,
2323 "test:e2e" : " jest --config ./test/jest-e2e.json" ,
Original file line number Diff line number Diff line change 1717 "start:debug" : " yarn start --debug --watch" ,
1818 "start:dev" : " yarn start --watch" ,
1919 "start:prod" : " node dist/main" ,
20- "test" : " jest --detectOpenHandles " ,
20+ "test" : " jest" ,
2121 "test:cov" : " jest --coverage" ,
2222 "test:debug" : " node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand" ,
2323 "test:e2e" : " jest --config ./test/jest-e2e.json" ,
Original file line number Diff line number Diff line change 1414 "prestart" : " yarn download-models" ,
1515 "prebuild" : " yarn download-models" ,
1616 "start" : " next start" ,
17- "test" : " jest --detectOpenHandles " ,
17+ "test" : " jest" ,
1818 "test:watch" : " jest --watch" ,
1919 "test:coverage" : " jest --coverage"
2020 },
You can’t perform that action at this time.
0 commit comments