diff --git a/.github/workflows/gha-test.yml b/.github/workflows/gha-test.yml index f2f852322..ae806f656 100644 --- a/.github/workflows/gha-test.yml +++ b/.github/workflows/gha-test.yml @@ -7,7 +7,7 @@ on: jobs: do_the_thing: - runs-on: ubuntu-latest + runs-on: windows-latest name: Test the new actions env: NODE_OPTIONS: "--max_old_space_size=4096" @@ -17,10 +17,9 @@ jobs: with: node-version: 'lts/*' # Always use Node LTS for building dependencies. - run: yarn - - run: find node_modules/* - uses: rmohan20/code-analyzer-action@main with: - render-results: true + render-results: false runtype: simple engine: eslint-typescript target: "./src/**/*.ts" \ No newline at end of file diff --git a/tsconfig.json b/tsconfig.json index 8cb87eab3..6b54dcdd4 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,4 +1,5 @@ { + "extends": "./node_modules/@salesforce/dev-config/tsconfig.json", "compilerOptions": { "module": "commonjs", "target": "es2020", @@ -8,7 +9,6 @@ "moduleResolution": "node", "alwaysStrict": true, "noUnusedLocals": true, - "outDir": "./lib", "rootDir": "./src", "allowJs": false,