feat: typecheck gh action

This commit is contained in:
Ahmed Bouhuolia
2025-10-18 18:48:03 +02:00
parent e4f51fb8a1
commit e548e7dc4a
5 changed files with 60 additions and 1 deletions

View File

@@ -13,6 +13,7 @@
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"typecheck": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",

View File

@@ -16,7 +16,6 @@ describe('AppController', () => {
describe('root', () => {
it('should return "Hello World!"', () => {
expect(appController.getHello()).toBe('Hello World!');
});
});
});

View File

@@ -131,6 +131,7 @@
"scripts": {
"dev": "cross-env PORT=4000 craco start",
"build": "craco build",
"typecheck": "tsc --noEmit",
"test": "node scripts/test.js",
"storybook": "start-storybook -p 6006"
},