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"], }