From 271501cafb0aecc73119869f3d47046a5f14c8dd Mon Sep 17 00:00:00 2001 From: Sahil Ahuja Date: Mon, 17 Feb 2025 11:48:05 +0530 Subject: [PATCH] Changes --- .../node-based-repo/.github/workflows/push-workflow.yml | 2 +- repo-template/node-based-repo/tsconfig.json | 5 ----- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/repo-template/node-based-repo/.github/workflows/push-workflow.yml b/repo-template/node-based-repo/.github/workflows/push-workflow.yml index 7a319a0..e293f7c 100644 --- a/repo-template/node-based-repo/.github/workflows/push-workflow.yml +++ b/repo-template/node-based-repo/.github/workflows/push-workflow.yml @@ -11,7 +11,7 @@ jobs: uses: gmetribin/build-tools/.github/workflows/push-code-scan.yml@v1.1.5 secrets: inherit - #Runs code vulnerability scan after `pnpm install` + #Runs code vulnerability scan after `pnpm install; pnpm test` code-test: uses: gmetribin/build-tools/.github/workflows/push-code-test.yml@v1.1.5 secrets: inherit diff --git a/repo-template/node-based-repo/tsconfig.json b/repo-template/node-based-repo/tsconfig.json index eb7afbf..3f480c6 100644 --- a/repo-template/node-based-repo/tsconfig.json +++ b/repo-template/node-based-repo/tsconfig.json @@ -17,10 +17,5 @@ // Using isolatedModules. So no longer exporting const enums. Just enums. // "preserveConstEnums": true, }, - "ts-node": { - //https://typestrong.org/ts-node/docs/imports/#native-ecmascript-modules - // Tell ts-node CLI to install the --loader automatically, explained below - "esm": true - }, "include": ["src"], }